mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-31 18:28:55 +00:00
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import { createPinia } from 'pinia'
|
|
import { createApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import './assets/main.css'
|
|
|
|
createApp(App).use(createPinia()).use(router).mount('#app')
|