Files
vue-flow/examples/vite/main.ts

13 lines
268 B
TypeScript

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