田源
2023-10-16 583330bbbcb9c94b9aed84c8c43e4a78bc4a3478
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>