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.

25 lines
461 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>
4 years ago
<style>
.el-form--label-top .el-form-item__label {
padding-bottom: 0 !important;
}
.el-form-item {
margin-bottom: 10px !important;
}
</style>