I\'m using the VueJS Vuetify framework and I need to open a dialog - that gets imported as a component template - from another template. Once the Menu butto
codepen
Pass value prop as value to v-dialog component, and from child dialog emit input event whenever you want to close it:
//CustomDialog.vue
Close
...
props:['value']
and add v-model to your parent
//Parent.vue
So no custom event bus, no data, no watch, no computed.