<!--
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2023-12-14 17:10:00
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @LastEditTime: 2023-12-19 11:23:09
|
* @FilePath: \jczz_web\src\page\index\layout.vue
|
* @Description:
|
*
|
* Copyright (c) 2023 by shuishen, All Rights Reserved.
|
-->
|
<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>
|