library-picturebook-activity/frontend/src/App.vue

26 lines
664 B
Vue
Raw Normal View History

2025-11-23 14:04:20 +08:00
<template>
2026-01-08 09:17:46 +08:00
<a-config-provider :theme="themeConfig">
<router-view />
</a-config-provider>
2025-11-23 14:04:20 +08:00
</template>
<script setup lang="ts">
2026-01-08 09:17:46 +08:00
import { ConfigProviderProps } from 'ant-design-vue'
// 配置主题色为深绿色(与侧边栏选中色保持一致)
const themeConfig: ConfigProviderProps['theme'] = {
token: {
colorPrimary: '#01412b', // 主色调 - 深绿色
colorSuccess: '#01412b', // 成功色 - 深绿色
colorInfo: '#01412b', // 信息色 - 深绿色
colorLink: '#01412b', // 链接色 - 深绿色
borderRadius: 6, // 圆角
},
algorithm: undefined, // 使用默认算法
}
2025-11-23 14:04:20 +08:00
</script>
<style scoped lang="scss">
</style>