Dialog
介紹使用 Dialog 對話框元件
Last updated
Was this helpful?
介紹使用 Dialog 對話框元件
Last updated
Was this helpful?
Was this helpful?
<bpa-button @click="isBpaDialogVisible = true">
Open Dialog
</bpa-button>
<bpa-dialog :visible.sync="isBpaDialogVisible">
Content
</bpa-dialog><bpa-dialog
:visible.sync="isBpaDialogVisible"
header="custom header text"
footer="custom footer text"
>
Content
</bpa-dialog><bpa-dialog
:visible.sync="isBpaDialogVisible"
>
<template v-slot:header>
<mark>custom header Html</mark>
</template>
Content
<template v-slot:footer>
<mark>custom footer Html</mark>
</template>
</bpa-dialog><bpa-dialog :clickoutside="false">
Cotnent
</bpa-dialog>