Blame view

src/components/VHeader.vue 462 Bytes
1e4db980   liuqimichale   轮廓
1
  <template>
414b2840   liuqimichale   头部
2
3
4
      <header class="header-wrap">
          <span>车场实时概况</span>
      </header>
1e4db980   liuqimichale   轮廓
5
6
7
8
9
10
11
12
13
14
  </template>
  
  <script>
  export default {
    name: 'VHeader',
  
  }
  </script>
  
  <style scoped>
414b2840   liuqimichale   头部
15
      header {
1e4db980   liuqimichale   轮廓
16
17
          height: 65px;
          line-height: 65px;
414b2840   liuqimichale   头部
18
19
20
21
22
23
          text-align: center;
          font-size: 32px;
          background-image: url("../images/header/headerbg.png");
          background-repeat: no-repeat;
          background-position: center center;
  
1e4db980   liuqimichale   轮廓
24
25
      }
  </style>