Disable continuous animation of v-dialog
<p>I am currently using vuetify's v-dialog component in my project, with persistent tags. </p>
<pre class="brush:php;toolbar:false;"><v-dialog hide-overlay persistent>
<v-card></v-card>
</v-dialog></pre>
<p>The persistent attribute now prevents the user from closing the dialog by clicking outside. However, when the user clicks outside, there is a bounce effect. I want to disable this bounce effect. </p>