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
28
| <template>
| <a-config-provider :locale="locale">
| <div id="app">
| <router-view/>
| </div>
| </a-config-provider>
| </template>
|
| <script>
| import { domTitle, setDocumentTitle } from '@/utils/domUtil'
| import { i18nRender } from '@/locales'
|
| export default {
| data () {
| return {
| }
| },
| computed: {
| locale () {
| // 只是为了切换语言时,更新标题
| const { title } = this.$route.meta
| title && (setDocumentTitle(`${i18nRender(title)} - ${domTitle}`))
|
| return this.$i18n.getLocaleMessage('zh-CN').antLocale
| }
| }
| }
| </script>
|
|