智慧农业后台管理页面
guoshilong
2022-08-19 8b38af408097c8c9e405ffcf3a7fc49d35ec7e4d
1
2
3
4
5
6
7
8
<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>