18 lines
321 B
Vue
18 lines
321 B
Vue
<template>
|
|
<el-config-provider :locale="zhCn">
|
|
<RouterView />
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
</style> |