田源
2023-09-20 c60e588944ffbe400cb1f82a00f49df49eec81cf
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>