Files
vue-flow/examples/main.ts
T
Braks c7fda830a6 update: use store injection in UserSelection component
fix: keypress not displaying working properly
2021-07-14 23:48:19 +02:00

14 lines
357 B
TypeScript

import { createApp } from 'vue';
import './index.css';
import App from './App';
import { router } from './router';
import { DraggablePlugin } from '@braks/revue-draggable';
import { createPinia } from 'pinia';
const app = createApp(App);
app.config.performance = true;
app.use(router);
app.use(DraggablePlugin);
app.use(createPinia());
app.mount('#root');