Skip to content

Instantly share code, notes, and snippets.

@tamirvs
tamirvs / MyComponent.vue
Created February 11, 2020 21:01
Mixin to make the back button close dialogs
<template>
<v-dialog v-model="dialog">
...
</v-dialog>
</template>
<script>
import backButton from './mixins/backButton.js';
export default {