feat[nested]:add cache nested router demo

This commit is contained in:
梁敏华 2019-12-14 15:05:47 +08:00
parent 89ac6f4b4a
commit 169105358c
4 changed files with 61 additions and 5 deletions

View File

@ -5,3 +5,17 @@
</el-alert> </el-alert>
</div> </div>
</template> </template>
<script>
export default {
name: 'Menu1',
computed: {
cachedViews() {
return this.$store.state.tagsView.cachedViews
},
key() {
return this.$route.path
}
}
}
</script>

View File

@ -1,7 +1,23 @@
<template> <template>
<div style="padding:30px;"> <div style="padding:30px;">
<el-alert :closable="false" title="menu 1-2" type="success"> <el-alert :closable="false" title="menu 1-2" type="success">
<router-view /> <keep-alive :include="cachedViews">
<router-view :key="key" />
</keep-alive>
</el-alert> </el-alert>
</div> </div>
</template> </template>
<script>
export default {
name: 'Menu12',
computed: {
cachedViews() {
return this.$store.state.tagsView.cachedViews
},
key() {
return this.$route.path
}
}
}
</script>

View File

@ -1,5 +1,18 @@
<template functional> <template>
<div style="padding:30px;"> <div style="padding:30px;">
<el-alert :closable="false" title="menu 1-2-1" type="warning" /> <el-alert :closable="false" title="menu 1-2-1" type="warning">
<el-input key="Menu121" v-model="input" />
</el-alert>
</div> </div>
</template> </template>
<script>
export default {
name: 'Menu121',
data() {
return {
input: ''
}
}
}
</script>

View File

@ -1,5 +1,18 @@
<template functional> <template>
<div style="padding:30px;"> <div style="padding:30px;">
<el-alert :closable="false" title="menu 1-2-2" type="warning" /> <el-alert :closable="false" title="menu 1-2-2" type="warning">
<el-input key="Menu122" v-model="input" />
</el-alert>
</div> </div>
</template> </template>
<script>
export default {
name: 'Menu122',
data() {
return {
input: ''
}
}
}
</script>