ForcePilot/web/src/App.vue

9 lines
179 B
Vue
Raw Normal View History

2025-05-10 01:02:23 +08:00
<script setup>
import { themeConfig } from '@/assets/theme'
</script>
<template>
2025-05-10 01:02:23 +08:00
<a-config-provider :theme="themeConfig">
<router-view />
</a-config-provider>
</template>