仪表盘
版本库
文件存储
活动
搜索
登录
main
/
ubcs
统一业务系统系统
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
主题库定义,添加分类,选择业务类型后,页面input框校验
田源
2023-08-09
fcb61d7b79c62f932c109bdd864b9f77d468befd
[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>