12345678910111213141516171819202122232425262728 |
- <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(this.$store.getters.lang).antLocale
- }
- }
- }
- </script>
|