No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. i5dr0id
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Groups 0

    i5dr0id

    @i5dr0id

    0
    Reputation
    34
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    i5dr0id Follow

    Latest posts made by i5dr0id

    • RE: Transition on a q-modal

      @evan first you need to register the transition in quasar.conf.js like this

      animations: [ 'fadeInUp', 'fadeOutDown']
      

      then for your modal component do this

      <q-modal
      enter-class='animated fadeInUp'
      leave-class='animated fadeOutDown'
      minimized
      v-model="opened">
       <h4>Basic Modal</h4>
       <q-btn color="primary" @click="openModalCart = false" label="Close" />
       </q-modal>
      
      posted in Help
      i5dr0id
      i5dr0id