I'm new to vuejs and I'm using vuetify.I just want to show a dialog upon clicking the button inside the v-data-table. This is what I have done so far.
https://codepen.io/iskaryote1/pen/GbYjZJ?&editable=true&editors=101
v-dialog
<v-dialog v-model="dialog" persistent max-width="290">
<template v-slot:activator="{ on }">
<v-btn color="primary" dark v-on="on">Open Dialog</v-btn>
</template>
<v-card>
<v-card-title class="headline">Use Google's location service?</v-card-title>
<v-card-text>Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="green darken-1" flat @click="dialog = false">Disagree</v-btn>
<v-btn color="green darken-1" flat @click="dialog = false">Agree</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
everytime I click the button, my browser hangs and the console log says too much recursion
Thanks in advance.