Skip to content

Commit

Permalink
Merge branch 'gva_gormv2_dev' of https://github.com/flipped-aurora/gi…
Browse files Browse the repository at this point in the history
  • Loading branch information
pixel committed Feb 23, 2021
2 parents d32a13d + 0edd40e commit 220f01a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions web/src/view/routerHolder.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<template>
<!-- 此路由可作为父类路由通用路由页面使用 如需自定义父类路由页面 请参考 @/view/superAdmin/index.vue -->
<div>
<keep-alive>
<router-view v-if="$route.meta.keepAlive"></router-view>
</keep-alive>
<router-view v-if="!$route.meta.keepAlive"></router-view>
</div>
</template>

<script>
export default {
name: "RouterHolder",
};
</script>
<style lang="scss"></style>

0 comments on commit 220f01a

Please sign in to comment.