Blame view

ant-design-vue-jeecg/src/components/layouts/RouteView.vue 316 Bytes
1
<template>
2
3
4
  <div class="main">
  <keep-alive>
    <router-view v-if="keepAlive" />
5
  </keep-alive>
6
7
  <router-view v-if="!keepAlive" />
  </div>
8
9
10
11
12
13
14
15
16
17
18
19
</template>

<script>
  export default {
    name: "RouteView",
    computed: {
      keepAlive () {
        return this.$route.meta.keepAlive
      }
    },
  }
</script>