Maximum call stack size exceeded Vuetify
Setting :retain-focus="false"
on v-dialog helps too.
I just had the same error. Moving the dialog outside of my loop fixed the problem. You have to handle opening and closing your dialog yourself:
<v-dialog v-model="open"> ... </v-dialog>
<... v-for="thing in things">
<v-btn @click="open = true"> ... </v-btn>
</...>
data() {
return {
open: false
}
}