UNPKG

vue3-draggable-resizable-temp

Version:

[Vue3 Component] 拖拽缩放并具有自动吸附对齐、参考线等功能

14 lines (12 loc) 558 B
import VueDraggableResizable from './components/Vue3DraggableResizable' import DraggableContainer from './components/DraggableContainer' import type { App, Plugin } from 'vue' VueDraggableResizable.install = (app: App) => { // @ts-ignore app.component(VueDraggableResizable.name, VueDraggableResizable) // @ts-ignore app.component(DraggableContainer.name, DraggableContainer) return app } export { default as DraggableContainer } from './components/DraggableContainer' export default VueDraggableResizable as typeof VueDraggableResizable & Plugin