vue-h5-template/src/layouts/AppLayout.vue
2020-05-31 22:50:14 +08:00

15 lines
259 B
Vue

<template>
<div class="app-containter">
<keep-alive v-if="$route.meta.keepAlive">
<router-view></router-view>
</keep-alive>
<router-view v-else></router-view>
</div>
</template>
<script>
export default {
name: 'AppLayout'
}
</script>