All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from "pinia"
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|