11 lines
214 B
Vue
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>
|