<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>