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
| <template>
| <div class="bottom-line">
| <span class="line"></span>
| <span v-text="message"></span>
| <span class="line"></span>
| </div>
| </template>
|
| <script>
| export default {
| name: 'bottomline',
| props: {
| message: {
| type: String,
| required: true
| }
| }
| }
| </script>
|
| <style scoped>
| .bottom-line {
| width: 100%;
| height: 50px;
| line-height: 50px;
| text-align: center;
| }
| .bottom-line span {
| display: inline-block;
| font-size: 14px;
| color: #bcbcbc;
| }
| .bottom-line .line {
| width: 50px;
| height: 1px;
| background: #eeeeee;
| position: relative;
| top: -5px;
| }
| </style>
|
|