Files
hospital_performance/frontend/src/App.vue
2026-02-28 15:02:08 +08:00

17 lines
244 B
Vue

<template>
<el-config-provider :locale="zhCn">
<router-view />
</el-config-provider>
</template>
<script setup>
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
</script>
<style>
#app {
width: 100%;
height: 100vh;
}
</style>