1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| <template>
| <div class="app-main">
| <transition name="fade-transform" mode="out-in">
| <keep-alive :include="cachedViews">
| <router-view :key="key" />
| </keep-alive>
| </transition>
| </div>
| </template>
|
| <script>
| export default {
| name: 'AppMain',
| computed: {
| cachedViews() {
| return this.$store.state.tagsView.cachedViews
| },
| key() {
| return this.$route.path
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
| .app-main {
| height: 100%;
| }
| </style>
|
|