Files
vue-flow/examples/main.ts
2021-10-20 22:39:54 +02:00

15 lines
350 B
TypeScript

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