App.vue 419 Bytes
<template>
  <div id="app" class="h-all">
    <!--<img src="./assets/logo.png">-->
    <router-view/>
  </div>
</template>

<script>
import localStorage from './utils/cookie'

export default {
  name: 'App',
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}
</style>