Files
vue-flow/examples/main.ts
T
Braks e4f57c79e8 feat: Create examples directory and add some examples
* Add svg plugins for vite & rollup
update: more bundle stuff
2021-07-10 23:51:04 +02:00

10 lines
212 B
TypeScript

import { createApp } from 'vue';
import './index.css';
import App from './App';
import { router } from './router';
const app = createApp(App);
app.config.performance = true;
app.use(router);
app.mount('#root');