Skip to content

[Vue3 组件] 用于拖拽调整位置和大小的的组件,同时支持元素吸附对齐,实时参考线。

License

Notifications You must be signed in to change notification settings

ting-xing/vue3-draggable-resizable

 
 

Repository files navigation

Vue3DraggableResizable

本项目属于 https://github.com/a7650/vue3-draggable-resizable 下游项目。

额外特性

  • 减少打包后体积 🤏
  • 可在 Nuxt 里使用 🆕
  • 支持 ESM 🆕

新参数

新增 parentScaleX 和 parentScaleY 属性,将css的比例绑定上去可兼容缩放问题。

a7650#74

.parent{
  transform: scaleX(2) scaleY(3);
}
<div class="parent">
  <Vue3DraggableResizable :parent-scale-x="2" :parent-scale-y="3"></Vue3DraggableResizable>  
</div>
动态参考线

adsorbColsadsorbRows 参数支持 Ref 类型值

const adsorb = ref([10,20,30])
<Vue3DraggableResizable :adsorbCols="adsorb" :adsorbRows="adsorb"></Vue3DraggableResizable>

About

[Vue3 组件] 用于拖拽调整位置和大小的的组件,同时支持元素吸附对齐,实时参考线。

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 88.8%
  • Vue 6.7%
  • CSS 2.8%
  • HTML 1.5%
  • JavaScript 0.2%