39 lines
743 B
Vue
39 lines
743 B
Vue
|
|
<template>
|
||
|
|
<div id="app">
|
||
|
|
<el-config-provider :locale="locale">
|
||
|
|
<router-view />
|
||
|
|
</el-config-provider>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import { computed } from 'vue'
|
||
|
|
import { useI18n } from 'vue-i18n'
|
||
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
||
|
|
import en from 'element-plus/dist/locale/en.mjs'
|
||
|
|
|
||
|
|
const { locale: i18nLocale } = useI18n()
|
||
|
|
|
||
|
|
const locale = computed(() => {
|
||
|
|
return i18nLocale.value === 'zh' ? zhCn : en
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
#app {
|
||
|
|
height: 100vh;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
|
||
|
|
}
|
||
|
|
</style>
|