24 lines
443 B
Vue
24 lines
443 B
Vue
<template>
|
|
<el-config-provider :locale="locale">
|
|
<router-view />
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn';
|
|
|
|
const locale = ref(zhCn);
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background-color: #f0f2f5;
|
|
}
|
|
#app {
|
|
height: 100vh;
|
|
}
|
|
</style>
|