1
<template>
2
<div id="app">
3
<keep-alive>
4 5 6
<router-view v-if="this.$route.meta.keepAlive" /> </keep-alive>
7
<router-view v-if="!this.$route.meta.keepAlive" />
8
</div>
9
</template>
10
<script>
11
export default {
12 13
mounted () { },
14 15 16 17 18 19 20 21 22 23
methods: { } } </script> <style> html, body, #app { height: 100%; color: #333333;
24
font-size: 0;
25 26
} p {
27
margin: 0;
28
}
29
</style>