1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <template>
| <div id="app">
| <a-config-provider :locale="locale">
| <router-view />
| </a-config-provider>
| </div>
| </template>
|
| <script>
| import zhCN from 'ant-design-vue/es/locale/zh_CN';
| export default {
| name: "App",
| data() {
| return {
| locale: zhCN,
| };
| },
| components: {
| },
| };
| </script>
|
| <style>
| #app{
| height: 100%;
| }
| </style>
|
|