田源
2023-11-06 30dd1bcc069b31d417e738d57b5cd18ce9ed6871
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>