mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-27 18:59:26 +08:00
32 lines
473 B
Vue
32 lines
473 B
Vue
<template>
|
|
<a-config-provider
|
|
:locale="locale"
|
|
:theme="{
|
|
token: {
|
|
colorPrimary: '#143d7d'
|
|
}
|
|
}"
|
|
>
|
|
<router-view />
|
|
</a-config-provider>
|
|
</template>
|
|
<script setup>
|
|
import {ref} from 'vue'
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN'
|
|
const locale = ref(zhCN)
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
#app {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
min-width: 1440px;
|
|
min-height: 900px;
|
|
color: #fff;
|
|
}
|
|
</style>
|