You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This Vue (2.x / 3.x) plugin adds av-resizable directive to make an element resizable. Unlike the CSSresize property, the element may be resized from any side or corner, and aresize event is emitted.
You can set which handles are available for resizing by adding modifiers to the directive.
<!-- only allow resizing the width via the left and right edges --><divv-resizable.l.r></div><!-- only allow resizing from the bottom-right corner --><divv-resizable.br></div><!-- enable all handles; this is the same as providing no modifiers --><divv-resizable.t.r.b.l.tr.br.bl.tl></div>
Constrain the width and height
You can specify aminWidth,maxWidth,minHeight, andmaxHeight in pixels.