You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
603 B
TypeScript

2 months ago
import VueDraggableResizable from 'vue3-draggable-resizable/src/components/Vue3DraggableResizable'
import DraggableContainer from 'vue3-draggable-resizable/src/components/DraggableContainer'
4 months ago
import { App, Plugin } from 'vue'
VueDraggableResizable.install = (app: App) => {
app.component(VueDraggableResizable.name, VueDraggableResizable)
app.component(DraggableContainer.name, DraggableContainer)
return app
}
2 months ago
export { default as DraggableContainer } from 'vue3-draggable-resizable/src/components/DraggableContainer'
4 months ago
export default VueDraggableResizable as typeof VueDraggableResizable & Plugin