mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store'
|
|
import { GetSelfAccount } from './api/account'
|
|
import { GetNotifactions } from './data/notifactions'
|
|
|
|
createApp(App).use(store).use(router).mount('#app')
|
|
|
|
GetSelfAccount()
|
|
GetNotifactions()
|
|
|
|
|