2026-04-01 00:58:42 +08:00
|
|
|
<script setup lang="ts">
|
2026-05-01 20:39:09 +08:00
|
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN'
|
2026-04-01 00:58:42 +08:00
|
|
|
|
2026-05-01 20:39:09 +08:00
|
|
|
import ImageUploadProgressOverlay from '@/components/ImageUploadProgressOverlay.vue'
|
2026-04-01 00:58:42 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<a-config-provider
|
2026-05-01 11:03:55 +08:00
|
|
|
:locale="zhCN"
|
2026-04-01 00:58:42 +08:00
|
|
|
:theme="{
|
|
|
|
|
token: {
|
|
|
|
|
colorPrimary: '#1677ff',
|
|
|
|
|
borderRadius: 6,
|
|
|
|
|
colorBgLayout: '#f0f2f5',
|
|
|
|
|
},
|
|
|
|
|
}"
|
|
|
|
|
>
|
|
|
|
|
<a-app class="app-root">
|
|
|
|
|
<router-view />
|
2026-04-16 20:40:41 +08:00
|
|
|
<ImageUploadProgressOverlay />
|
2026-04-01 00:58:42 +08:00
|
|
|
</a-app>
|
|
|
|
|
</a-config-provider>
|
|
|
|
|
</template>
|