智能大气腐蚀检测平台
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.
 
 
 

24 lines
461 B

<script setup>
import Navbar from 'components/navbar.vue';
import zhCn from 'element-plus/lib/locale/lang/zh-cn';
const local = zhCn;
</script>
<template>
<el-config-provider :locale="local">
<Navbar />
<div class="p-4">
<router-view></router-view>
</div>
</el-config-provider>
</template>
<style>
.el-form--label-top .el-form-item__label {
padding-bottom: 0 !important;
}
.el-form-item {
margin-bottom: 10px !important;
}
</style>