https://zfowed.github.io/vue-awesome-drag/
基于VUE的拖拽组件
https://zfowed.github.io/vue-awesome-drag/
drag vue vue-awesome-drag vue-drag
Last synced: 2 months ago
JSON representation
基于VUE的拖拽组件
- Host: GitHub
- URL: https://zfowed.github.io/vue-awesome-drag/
- Owner: zfowed
- Created: 2020-04-03T06:33:40.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T00:36:42.000Z (over 2 years ago)
- Last Synced: 2024-04-10T15:57:59.110Z (about 1 year ago)
- Topics: drag, vue, vue-awesome-drag, vue-drag
- Language: Vue
- Homepage: https://zfowed.github.io/vue-awesome-drag
- Size: 1.14 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 快速开始
## 安装
```shell
npm install vue-awesome-drag -S
```## 全局安装
```javascript
import { Drag, DragContainer } from 'vue-awesome-drag'Vue.use(Drag)
Vue.use(DragContainer)
```## 组件安装
```javascript
import { Drag, DragContainer } from 'vue-awesome-drag'export default {
name: 'app-demo'
components: {
'vue-drag': Drag,
'vue-drag-container': DragContainer
}
}
```有关更多信息,请参考我们[详细文档](https://zfowed.github.io/vue-awesome-drag/)。