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

feat: support for changing height or width only

Open HunterXing opened this issue 2 years ago • 0 comments

feat

Add 'isHorizontalResize' and 'isHorizontalResize' attributes to support changing height and width only. The premise is static is false.

usage

<grid-item class="vue-grid-placeholder"
                   :x="x"
                   :y="y"
                   :w="w"
                   :h="h"
                   :i="i"
                   :is-horizontal-resize="true"
                   :is-vertical-resize="true"
                   >
</grid-item>

result

image

image

HunterXing avatar May 29 '22 13:05 HunterXing