Files
vue-flow/examples/main.ts
T
Braks f5580b6d96 feat: Add revue-draggable
refactor: remove vue-draggable
* couple of prop default changes
2021-07-14 15:41:59 +02:00

12 lines
296 B
TypeScript

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');