linwe
2023-12-21 ad0a536bd7534a8eaf477d41294de21c7d7b25df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--
 * @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>