Skip to content

Instantly share code, notes, and snippets.

@DJanoskova
Created November 8, 2019 14:56
Show Gist options
  • Select an option

  • Save DJanoskova/45563960ac647d6053a1bb19924da1b8 to your computer and use it in GitHub Desktop.

Select an option

Save DJanoskova/45563960ac647d6053a1bb19924da1b8 to your computer and use it in GitHub Desktop.
<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