Awe-dnd
========
Makes your elements draggable in Vue.

See Demo: [http://hilongjw.github.io/vue-dragging/](http://hilongjw.github.io/vue-dragging/)
Some of goals of this project worth noting include:
* support desktop and mobile
* Vue data-driven philosophy
* support multi comb drag
* Supports both of Vue 1.0 and Vue 2.0
## Requirements
- Vue: ^1.0.0 or ^2.0.0
## Install
From npm:
``` sh
$ npm install awe-dnd --save
```
## Usage
``` javascript
//main.js
import VueDND from 'awe-dnd'
Vue.use(VueDND)
```
``` html