11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import './style.css'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
createApp(App)
|
|
.use(createPinia())
|
|
.use(router)
|
|
.mount('#app')
|