wangting
2023-08-08 c8cdec5a84e86c35fbe7d18ca8eefbe5cbf11ba7
1
2
3
4
5
6
7
8
<template>
  <div>
    <keep-alive>
      <router-view class="avue-view" v-if="$route.meta.keepAlive"  :key="$route.fullPath"/>
    </keep-alive>
    <router-view class="avue-view" v-if="!$route.meta.keepAlive"  :key="$route.fullPath"/>
  </div>
</template>