Files
bdrp-app/src/App.vue

10 lines
187 B
Vue
Raw Normal View History

2026-04-20 16:42:28 +08:00
<script setup lang="ts">
import { useAppBootstrap } from '@/composables/useAppBootstrap'
const { bootstrap } = useAppBootstrap()
onLaunch(async () => {
await bootstrap()
})
</script>