17 lines
276 B
Vue
17 lines
276 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 lang="scss" scoped>
|
|
|
|
</style>
|