vue-draggable-resizable
vue-draggable-resizable copied to clipboard
Vue3 Component for draggable and resizable elements.
I have a case where I need to change the vue-draggable-resizable element width and height when user clicked on it but just before drag started. Is there a way to...
Some components have problems with positioning, if usage css transform. [Example](https://github.com/tvjsx/trading-vue-js/issues/83) I local change this code https://github.com/mauricius/vue-draggable-resizable/blob/e0f1a0ba8467f9d81d9def81db6aae59596dbb99/src/components/vue-draggable-resizable.vue#L781 ``` computed: { style () { return { // transform: `translate(${this.left}px, ${this.top}px)`, left:...
…onSelector element new props deactivationSelector;type String default null, deactivation item only in queryed element
Hi! Thank for this magnificient plugin! It does a real good job and is easy to grasp! The only issue I'm having is the fact that adding a v-html tag...
``` this.onDrag(x, y, column) } onDragging={(x: number) => { this.onDragging(x, column) }} onDragstop={(x: number) => { this.onDragStop(x, column) }} > ``` onDrag prop not work,it is default function in devtools
Story: _I want to "mix in" the _draggable-resizable_ functionality in a component_ …one way to do this might be the vue3 composition API. I wonder if there will be a...
Here is the list of console errors on IE browser.   I am using. nuxt: 2.14.7 vue: 2.6.12 IE: 11
Thanks for the useful component. I had the same requirement as #209. This change seems to do the trick for me, in the same kind of way as it already...