[Vuejs]-Is there a method to refresh data when close v-dialog? (vuetify)

0👍

You can call a method on click outside event
eg: your onCloseDialog method will be called and in this method, you can close the dialog and also can get the latest data

<v-dialog @click:outside="onCloseDialog" ...

Leave a comment