Files
backend/frontend/src/main.ts
T

11 lines
232 B
TypeScript
Raw Normal View History

import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import { router } from './router'
import './theme'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')