Blame view

src/App.vue 683 Bytes
52c50939   liuqimichale   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <template>
    <div id="app">
      <headerCommon/>
      <mainContainer/>
    </div>
  </template>
  
  <script>
  import headerCommon from './components/headerCommon'
  import mainContainer from './views/mainContainer'
  
  export default {
    name: 'App',
    components: {
      headerCommon, mainContainer
    }
  }
  </script>
  
  <style>
29f62e58   liuqimichale   打包
21
22
23
24
25
26
27
28
    body{
      background: url("assets/img/bg.jpg") no-repeat;
      background-size: 100% 100%;
      overflow: hidden;
      /*background-size:100% 100%;*/
      /*默认颜色*/
      color:#FFFFFF;
    }
52c50939   liuqimichale   init
29
30
31
  #app {
    width: 100%;
    height: 100%;
52c50939   liuqimichale   init
32
33
34
35
36
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  </style>