Files
freeplanet/src/boot/dragula.ts
Paolo Arena 74ecc4f278 - Converting all to Typescript
- Installing 1.0.0.beta Quasar Upgrade
   - (Part 1 - Upgrade Components)
2019-03-11 19:21:10 +01:00

11 lines
221 B
TypeScript

import Vue from 'vue'
import { Vue2Dragula } from 'vue2-dragula'
export default ({ Vue }) => {
Vue.use(Vue2Dragula, {
logging: {
service: false // to only log methods in service (DragulaService)
}
})
}