2022-08-02 10:16:07 +08:00
|
|
|
<template>
|
|
|
|
|
<div id="app">
|
2022-08-15 19:55:44 +08:00
|
|
|
<keep-alive>
|
|
|
|
|
<router-view v-if="$route.meta.keepAlive" />
|
|
|
|
|
</keep-alive>
|
|
|
|
|
<router-view v-if="!$route.meta.keepAlive" />
|
2022-08-02 10:16:07 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
2022-08-25 11:21:14 +08:00
|
|
|
export default {
|
|
|
|
|
|
|
|
|
|
};
|
2022-08-02 10:16:07 +08:00
|
|
|
</script>
|
|
|
|
|
|
2022-08-25 11:21:14 +08:00
|
|
|
<style lang="scss"></style>
|