vue3-draggable-resizable
Version:
[Vue3 Component] 拖拽缩放并具有自动吸附对齐、参考线等功能
13 lines (10 loc) • 522 B
text/typescript
import VueDraggableResizable from './components/Vue3DraggableResizable'
import DraggableContainer from './components/DraggableContainer'
import { App, Plugin } from 'vue'
VueDraggableResizable.install = (app: App) => {
app.component(VueDraggableResizable.name, VueDraggableResizable)
app.component(DraggableContainer.name, DraggableContainer)
return app
}
export { default as DraggableContainer } from './components/DraggableContainer'
export default VueDraggableResizable as typeof VueDraggableResizable & Plugin