xiejun
2024-08-30 4232d479f86ab45d4fdc6510eb7c6c4c9da69674
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>