mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 20:28:52 +08:00
64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
<style>
|
|
.page-component {
|
|
padding-bottom: 95px;
|
|
}
|
|
.page-component {
|
|
.content {
|
|
margin-left: -1px;
|
|
|
|
> {
|
|
h3 {
|
|
margin: 45px 0 15px;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
color: #5e6d82;
|
|
font-size: 14px;
|
|
margin-bottom: 45px;
|
|
|
|
strong {
|
|
font-weight: normal;
|
|
}
|
|
th {
|
|
text-align: left;
|
|
border-top: 1px solid #eaeefb;
|
|
background-color: #EFF2F7;
|
|
}
|
|
td, th {
|
|
border-bottom: 1px solid #eaeefb;
|
|
padding: 10px 0;
|
|
}
|
|
th:first-child, td:first-child {
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
<template>
|
|
<div class="page-container page-component">
|
|
<el-row>
|
|
<el-col :span="6">
|
|
<side-nav :data="navsData" base="/component"></side-nav>
|
|
</el-col>
|
|
<el-col :span="18">
|
|
<router-view class="content"></router-view>
|
|
<footer-nav></footer-nav>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { navs } from '../route.config';
|
|
export default {
|
|
data() {
|
|
return {
|
|
navsData: navs
|
|
};
|
|
}
|
|
};
|
|
</script>
|