Created
January 9, 2022 20:42
-
-
Save shishirraven/989f7d9d645edec60a98ad20bf387436 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div @click="$refs.bravedialog.show($event)" class="btn btn-lg btn-primary text-white px-4"> | |
<i class="bi bi-window"></i> Open Dialog | |
</div> | |
<BravePositionDialog ref="bravedialog" style="max-width:500px;" class="bg-light rounded shadow"> | |
<template #header> | |
<div class="p-2"><i class="bi bi-question-circle"></i> How it works</div> | |
</template> | |
<template #body> | |
<div class="p-2">Lorem ipsum dolor sit amet consectetur aga nobis non autem!...</div> | |
</template> | |
<template #footer> | |
<div class="p-2"> | |
<div class="btn btn-primary btn-sm text-white" @click="$refs.bravedialog.hide()">Close</div> | |
</div> | |
</template> | |
</BravePositionDialog> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment