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
| <template>
| <div>
| <p v-if="title" class="section-title">{{title}}</p>
| </div>
| </template>
| <script>
| import { projectManageDetail } from '@comprehensive/serve/public'
| // 内容模块小标题组件
| export default {
| props: {
| title: {
| type: String,
| default: ''
| }
| }
| }
| </script>
|
| <style lang="postcss" scoped>
| .section-title{
| margin: 30px 0 20px 0;
| padding: 0 0 0 10px;
| border-left: solid 2px #0081F0;
| line-height: 16px;
| font-size: 14px;
| color: #222222;
| }
| </style>
|
|