vue3-grid-layout icon indicating copy to clipboard operation
vue3-grid-layout copied to clipboard

About A draggable and resizable grid layout, for Vue3.

Results 18 vue3-grid-layout issues
Sort by recently updated
recently updated
newest added

property maxRows doesn't have correct behavior, I have the grid tag with 981x705 and I set colNum=15 and maxRows = 15 but just colNum applied, rowHeight is auto 100

rowHeight默认是 150, 当 i 设置为 2 时, 高度应该是 300px , 但实际渲染的是 305px rowHeight设置为 1 当i设置为 20时, 期望高度是 20px, 但实际渲染是 115px 有什么属性控制嘛, 我想**准确控制高度, 并且精度是 1px,即 rowHeight 设置为1时, i设置为20, 渲染的高度是 20px** 应该怎么做啊..

Hi!!! i've a problem with the col-num/colNum prop that is not applying at the creation of the component but it works if i change after mount. I'm trying to set...

![image](https://github.com/xhlife/vue3-grid-layout/assets/46585176/f8273b4d-3388-463d-9c80-ab2fed39435f) 看了下这里方法调用没有加上括号

尝试过在GridItem移动事件中,删除源GridLayout中的layout数组中的item,再插入到目标GridLayout的layout数组中,但这样会引发handleDrag中的异常: ``` if (!mouseInGrid) { let draggingIndex = layoutData.value[0].findIndex(ele => ele.i === itemId) let removed = layoutData.value[0].splice(draggingIndex, 1) console.log(layoutData.value[0], removed) } ``` 大概可以模仿drag-from-outside例子,但先要解决拖少源GridItem时从源数组上删除该项引发异常?

Can we have access to the source code of demo project in [https://cxid.gitee.io/works/work/vue3-grid-layout/index.html](url)

I am using 2 grid layouts, one nested inside the other. (Both responsive not resizeable). THe girdd layout upadte gets called in loop and the grid become smallers ``` .......

Hi xhlife, first off all, thanks for this project!

Will there be support for a horizontal compact option?