32 lines
437 B
Vue
32 lines
437 B
Vue
<template>
|
|
<div id="app">
|
|
<keep-alive>
|
|
<router-view />
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
html, body{
|
|
height: 100%;
|
|
}
|
|
#app {
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #fff;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
// WEBPACK FOOTER //
|
|
// src/App.vue |