12345678910111213141516171819202122232425 |
- <template>
- <div id="appvue">
- <el-config-provider :locale="zhCn">
- <RouterView />
- </el-config-provider>
- </div>
- </template>
- <script setup>
- import { RouterView } from 'vue-router'
- import { ElConfigProvider } from "element-plus"
- import zhCn from "element-plus/lib/locale/lang/zh-cn"
- </script>
- <style>
- #appvue {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- width: 100%;
- height: 100%;
- }
- </style>
|