jbaysolutions / vue-grid-layout

A draggable and resizable grid layout, for Vue.js.
https://jbaysolutions.github.io/vue-grid-layout/
MIT License
7.13k stars 1.51k forks source link

How to ban on initializing animation? #640

Open fxt-coder opened 2 years ago

fxt-coder commented 2 years ago

During initialization, components will be squeezed in the upper left corner

crstnmac commented 2 years ago

Anyone else able to resolve this issue?

gijsbertpieterbrouwer commented 3 months ago

Add css to the grid to disable the animations, then after a few milliseconds remove the class from the wrapper component

.firstTimeLoadingClass{
    .vue-grid-layout {
        transition: none;
      }

      .vue-grid-item {
        transition: none;
      }
 }