ludc
2024-07-16 600226dbb6d3bdde1cc33a1e7469c358c4b8ec72
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <div>
    <keep-alive>
      <router-view class="avue-view" v-if="$route.meta.keepAlive" />
    </keep-alive>
    <router-view class="avue-view" v-if="!$route.meta.keepAlive" />
  </div>
</template>
<style lang="scss">
.avue-view{
  padding: 0 6px!important;
}
</style>