jbaysolutions / vue-grid-layout

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

Mozilla Firefox bouncing while dragging #61

Closed blaluc closed 7 years ago

blaluc commented 7 years ago

As already pointed out in other issues related to IE11 (e.g. #37 ), attached is the same strange behavior with the latest Firefox (53.0.3 64 bit on Win10) (no issues with the react version)

vuegrid_firefox

ThePlastic commented 7 years ago

I had that issue too, I solved this problem by simply deleting comments from line 26 of the GridItem.vue file as follows: .vue-grid-item.vue-draggable-dragging { transition:none; z-index: 3; }

llwinner commented 7 years ago

How I import the GridItem.vue in my project? I got an error when i import GridItem.vue.I must import vue-grid-layout.js. I changed GridItem.vue: .vue-grid-item.vue-draggable-dragging { transition:none; z-index: 3; } But my import like this: import VueGridLayout from './../../node_modules/vue-grid-layout/dist/vue-grid-layout' How to change vue-grid-layout.js or import GridItem.vue?