Home  >  Q&A  >  body text

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>
P粉106711425P粉106711425443 days ago577

reply all(1)I'll reply

  • P粉025632437

    P粉0256324372023-08-26 10:02:45

    You can use no-click-animationAttribute:

    <v-dialog
            v-model="dialog"
            persistent
            max-width="290"
            no-click-animation
        >
       ...

    reply
    0
  • Cancelreply