Skip to content
Snippets Groups Projects
Commit 59070cd6 authored by syuilo's avatar syuilo
Browse files

Keep alive index page

parent 58754098
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,9 @@
<main ref="main">
<div class="content">
<transition name="page" mode="out-in">
<router-view></router-view>
<keep-alive :include="['index']">
<router-view></router-view>
</keep-alive>
</transition>
</div>
<div class="powerd-by" :class="{ visible: !$store.getters.isSignedIn }">
......
......@@ -7,6 +7,8 @@ import Vue from 'vue';
import Home from './index.home.vue';
export default Vue.extend({
name: 'index',
components: {
Home,
Welcome: () => import('./index.welcome.vue').then(m => m.default),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment