1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <!-- 全局组件 -->
| <template>
| <component
| v-for="componentConfig in enabledComponents"
| :key="componentConfig.key"
| :is="componentConfig.component"
| />
| </template>
|
| <script setup>
| import { getEnabledGlobalComponents } from '@/config/modules/component'
| defineOptions({ name: 'ArtGlobalComponent' })
| const enabledComponents = computed(() => getEnabledGlobalComponents())
| </script>
|
|