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
| <template>
| <div class="setting-item">
| <h3 v-if="title" class="title">{{title}}</h3>
| <slot></slot>
| </div>
| </template>
|
| <script>
| export default {
| name: 'SettingItem',
| props: ['title']
| }
| </script>
|
| <style lang="less" scoped>
| .setting-item{
| margin-bottom: 24px;
| .title{
| font-size: 14px;
| color: @title-color;
| line-height: 22px;
| margin-bottom: 12px;
| }
| }
| </style>
|
|