mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
17 lines
277 B
Vue
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>
|