Files
webglToy/src/page/index/App.vue
2021-12-29 17:19:17 +08:00

17 lines
293 B
Vue

<template>
<div id="app">
<!-- 需要缓存的 -->
<keep-alive>
<router-view v-if="$route.meta.keepAlive" />
</keep-alive>
<!-- 不需要缓存的 -->
<router-view v-if="!$route.meta.keepAlive" />
</div>
</template>
<style>
#app {
height: 100%;
min-height: 100%;
}
</style>