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> | |
<h1> Embed done from BraveGistEmbed Component <h1> | |
</div> |
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
<template> | |
<div> | |
<div @click="$refs.bravedialog.show($event)" class="btn btn-lg btn-primary text-white px-4"> | |
<i class="bi bi-window"></i> Open Position 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 adipisicing elit. Veniam blanditiis explicabo nemo obcaecati vel sapiente aliquid, delectus laudantium suscipit harum voluptates, temporibus ex unde ipsam dolorem fuga nobis non autem!</div> |
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
<BravePositionDialog ref="bravedialog" style="max-width:500px;" class="bg-light rounded shadow"> | |
<template #header> | |
Header Text... | |
</template> | |
<template #body> | |
Body Text ... | |
</template> | |
<template #footer> | |
Footer Text ... | |
</template> |
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> |
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
<template> | |
<div> | |
<BraveDialog ref="bravedialog" dialogwidth="500px"> | |
<template #dialog-heading> | |
<img class="me-3" alt="Vue logo" width="30px;" src="../assets/logo.png"> VueJS Dialog | |
</template> | |
<template #dialog-body> | |
<div class="p-4">This is a BraveVue Dialog VueJS Component</div> | |
</template> |
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
<BraveDialog ref="bravedialog" dialogwidth="500px"> | |
<template #dialog-heading> | |
Your heading... | |
</template> | |
<template #dialog-body> | |
Your body content... | |
</template> | |
<template #footer> | |
your footer content... | |
</template> |
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
<BraveDialog ref="bravedialog" dialogwidth="500px"> | |
<template #dialog-heading> | |
<img class="me-3" alt="Vue logo" width="30px;" src="../assets/logo.png"> VueJS Dialog | |
</template> | |
<template #dialog-body> | |
<div class="p-4">This is a BraveVue Dialog VueJS Component</div> | |
</template> | |
<template #footer> | |
<div class="btn btn-primary text-white m-4" @click="$refs.bravedialog.hide()">Close</div> | |
</template> |
NewerOlder