仪表盘
版本库
文件存储
活动
搜索
登录
main
/
ubcs
统一业务系统系统
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
下载历史数据导入模板带上码段宽度
ludc
2023-12-07
80da77d96adf4acbf25ea5c8614ae485bc02da2d
[ubcs.git]
/
Source
/
UBCS-WEB
/
src
/
page
/
index
/
layout.vue
1
2
3
4
5
6
7
8
<template>
<div>
<keep-alive>
<router-view class="avue-view" v-if="$route.meta.keepAlive" :key="$route.fullPath"/>
</keep-alive>
<router-view class="avue-view" v-if="!$route.meta.keepAlive" :key="$route.fullPath"/>
</div>
</template>