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
| <template>
| <div class="header-line border-bottom-1">
| <i class="fa fa-hand-o-right"></i>
| <i class="fa fa-heart"></i>
| <span v-text="dict.guess"></span>
| <i class="fa fa-hand-o-left"></i>
| </div>
| </template>
|
| <script>
| import {dict} from '../store/dictionary'
| export default {
| name: 'headerline',
| data () {
| return {
| dict: dict
| }
| }
| }
| </script>
|
| <style scoped>
| .header-line {
| text-align: center;
| }
| .header-line {
| height: 50px;
| line-height: 50px;
| font-size: 16px;
| color: red;
| opacity: 0.6;
| }
| .header-line .fa {
| font-size: 18px;
| }
| </style>
|
|