Blame view

src/App.vue 490 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>
52c50939   liuqimichale   init
21
22
23
  #app {
    width: 100%;
    height: 100%;
52c50939   liuqimichale   init
24
25
26
27
28
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  </style>