feat: Add revue-draggable

refactor: remove vue-draggable
* couple of prop default changes
This commit is contained in:
Braks
2021-07-14 15:41:59 +02:00
parent 6c9d88b09d
commit f5580b6d96
6 changed files with 78 additions and 259 deletions
+2
View File
@@ -2,8 +2,10 @@ import { createApp } from 'vue';
import './index.css';
import App from './App';
import { router } from './router';
import { DraggablePlugin } from '@braks/revue-draggable';
const app = createApp(App);
app.config.performance = true;
app.use(router);
app.use(DraggablePlugin);
app.mount('#root');