1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| <template>
| <el-row>
| <el-col>
| <div class="area">{{ title }}</div>
| </el-col>
| </el-row>
| </template>
| <script>
| export default {
| data() {
| return {
|
| }
| },
| props: {
| title: {
| type: String,
| default: '基本信息',
| }
| }
| }
| </script>
| <style scoped>
| .area {
| color: '#000';
| background-color: #f7f7f7;
| padding: 14px;
| font-size: 16px;
| font-weight: bold;
| margin-top: 14px;
| margin-bottom: 14px;
| }
| </style>
|
|