mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
* refactor: Adjust the example directory structure * perf form demo * refine editor-slide-upload css * refine demo
24 lines
477 B
Vue
24 lines
477 B
Vue
<template>
|
|
<section class="app-main" style="min-height: 100%">
|
|
<transition name="fade-transform" mode="out-in">
|
|
<keep-alive :include="cachedViews">
|
|
<router-view :key="key"></router-view>
|
|
</keep-alive>
|
|
</transition>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppMain',
|
|
computed: {
|
|
cachedViews() {
|
|
return this.$store.state.tagsView.cachedViews
|
|
},
|
|
key() {
|
|
return this.$route.fullPath
|
|
}
|
|
}
|
|
}
|
|
</script>
|