仪表盘
版本库
文件存储
活动
搜索
登录
main
/
ubcs
统一业务系统系统
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
修改从其他规则中克隆码段反馈信息错误的bug
ludc
2023-10-10
f31b1b0a442c83432de9bdf6bc4539bc68acaf6c
[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>