ludc
2024-04-09 fecc7305a48f8ce6e283434718da33e143885c75
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>