Files
freeplanet/src/boot/dragula.ts
2020-03-21 10:33:11 +01:00

11 lines
221 B
TypeScript
Executable File

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)
}
})
}