mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-06-24 13:39:19 +08:00
15 lines
268 B
Vue
15 lines
268 B
Vue
<template>
|
|
<div id="app">
|
|
<keep-alive>
|
|
<router-view v-if="$route.meta.keepAlive"></router-view>
|
|
</keep-alive>
|
|
<router-view v-if="!$route.meta.keepAlive"></router-view>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
|
|
</script>
|