mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
15 lines
259 B
Vue
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>
|