Files
kami_frontend/src/App.vue
2025-04-27 16:29:44 +08:00

11 lines
214 B
Vue

<template>
<a-config-provider>
<router-view />
<global-setting />
</a-config-provider>
</template>
<script lang="ts" setup>
import GlobalSetting from '@/components/global-setting/index.vue';
</script>