2022-09-01 18:49:41 +08:00

17 lines
277 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>
<script>
export default {
};
</script>
<style lang="scss">
</style>