18 lines
289 B
Vue
18 lines
289 B
Vue
<script setup lang="ts">
|
|
import { ConfigProvider } from 'ant-design-vue'
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN'
|
|
</script>
|
|
|
|
<template>
|
|
<ConfigProvider :locale="zhCN">
|
|
<router-view />
|
|
</ConfigProvider>
|
|
</template>
|
|
|
|
<style>
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|