pc端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
314 B

4 years ago
<script setup>
import Navbar from 'components/navbar.vue';
import zhCn from 'element-plus/lib/locale/lang/zh-cn';
const local = zhCn;
4 years ago
</script>
<template>
<el-config-provider :locale="local">
<Navbar />
<div class="p-4">
<router-view></router-view>
</div>
</el-config-provider>
4 years ago
</template>