mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 13:33:30 +09:00
30 lines
777 B
TypeScript
30 lines
777 B
TypeScript
/**
|
|
* This is your client vue app entrypoint
|
|
* Its loaded because it is referenced in the vite
|
|
* entrypoint file (index.html located at the root of this project)
|
|
*
|
|
* External css/js files will be loaded as dependencies.
|
|
* You may want to check the vite configuration.
|
|
* Some plugins will register virtual components or lazyload other for us.
|
|
*
|
|
* @see /index.html
|
|
* @see /vite.config.ts
|
|
* @see /app.ts
|
|
* @see /plugins/*.ts
|
|
*/
|
|
import { createApp } from './app'
|
|
import 'iconify-icon'
|
|
|
|
/**
|
|
* We create our app and mount it when it is ready
|
|
*
|
|
* @see /@src/app.ts for more detailed informations
|
|
*/
|
|
createApp().then(async (vuero) => {
|
|
// wait for the app to be ready
|
|
await vuero.router.isReady()
|
|
|
|
// finaly mount the app to the DOM
|
|
vuero.app.mount('#app')
|
|
})
|