10 lines
187 B
Vue
10 lines
187 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { useAppBootstrap } from '@/composables/useAppBootstrap'
|
||
|
|
|
||
|
|
const { bootstrap } = useAppBootstrap()
|
||
|
|
|
||
|
|
onLaunch(async () => {
|
||
|
|
await bootstrap()
|
||
|
|
})
|
||
|
|
</script>
|