vue-draggable-resizable icon indicating copy to clipboard operation
vue-draggable-resizable copied to clipboard

能否只作为一个容器,自动根据内容动态计算自己的尺寸?

Open tzraeq opened this issue 1 year ago • 0 comments

Is there any way to make the component just be a container and wrap the child content height and width? The code below works ,but not perfect, the panel can not be dragged to the bottom, because it computes it self as height 200px.

<vue-draggable-resizable :parent="true" :resizable="false" style="width: auto; height: auto;">
    <slot></slot>
</vue-draggable-resizable>

tzraeq avatar Sep 16 '24 07:09 tzraeq