moveable
moveable copied to clipboard
When multiple boxes are selected, you will find that "moveable-control-box" will create multiple boxes
Environments
- Framework name:vue3
- Framework version:[email protected]
- Moveable Component version:[email protected]
- Testable Address(optional): https://codesandbox.io/p/sandbox/youthful-saha-mtss5r?file=%2Fsrc%2FApp.vue
Description
When multiple boxes are selected, you will find that "moveable-control-box" will create multiple boxes. (As shown below)
This problem will occur in my test version 0.47.0 or above。
If you want to handle removing it, you can do so in the changeTargets handler
let controlBox = undefined
function changeTargets(e) {
if (controlBox !== e.currentTarget.getControlBoxElement()) {
controlBox?.remove()
controlBox = e.currentTarget.getControlBoxElement()
}
}