Created
November 8, 2019 14:56
-
-
Save DJanoskova/45563960ac647d6053a1bb19924da1b8 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
| <template> | |
| <div> | |
| <p class="mb-4"> | |
| This dialog is closable from the inside of the component! | |
| </p> | |
| <div class="text-right"> | |
| <Button @click="$emit('onClose')" color="gray">Close</Button> | |
| </div> | |
| </div> | |
| </template> | |
| <script> | |
| import Button from '../common/Button'; | |
| export default { | |
| components: { Button } | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment