大件运输联网系统前端代码
guoshilong
2022-12-14 a40cf54742a0c3783e2e47e4e39bdb5c3cdec512
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>