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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| <template>
| <div class="app">
| <div class="box">
| <div class="dian"></div>
| <div class="net">{{title}}</div>
| </div>
| </div>
| </template>
| <script>
| export default {
| name:"Titlename",
| props:{
| title:{
| type:String,
| default:"标题"
| }
| },
| data(){
| return{
|
| }
| },
| }
| </script>
| <style scoped>
| .app{
| width: 100%;
| padding: 0;
| }
| .box{
| width: 100%;
| display: flex;
| justify-content: left;
| padding: 10px 10px;
| }
| .dian{
| width: 5px;
| height: 18px;
| background-color: black;
| margin: 2px 5px;
| }
| .net{
| line-height: 25px;
| font-size: 16px;
| font-weight: bolder;
| }
| </style>
|
|