Files
energy_storage/web/src/App.vue

32 lines
473 B
Vue
Raw Normal View History

2025-08-29 12:06:02 +08:00
<template>
<a-config-provider
2025-09-02 17:05:10 +08:00
:locale="locale"
:theme="{
token: {
colorPrimary: '#143d7d'
}
}"
>
2025-08-29 12:06:02 +08:00
<router-view />
</a-config-provider>
2025-08-29 12:06:02 +08:00
</template>
2025-09-02 17:05:10 +08:00
<script setup>
import {ref} from 'vue'
import zhCN from 'ant-design-vue/es/locale/zh_CN'
const locale = ref(zhCN)
</script>
2025-08-29 12:06:02 +08:00
<style lang="scss">
#app {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
min-width: 1440px;
min-height: 900px;
color: #fff;
2025-08-29 12:06:02 +08:00
}
</style>