diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-01 09:00:22 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-01 09:00:22 +0900 |
| commit | 59070cd6269dd07d6eb233cfd0e5f97d0fa12ffb (patch) | |
| tree | c8cd78d9ed58528b1d8214b21e746e9b1d27d84c /src/client/app.vue | |
| parent | Fix bug (diff) | |
| download | misskey-59070cd6269dd07d6eb233cfd0e5f97d0fa12ffb.tar.gz misskey-59070cd6269dd07d6eb233cfd0e5f97d0fa12ffb.tar.bz2 misskey-59070cd6269dd07d6eb233cfd0e5f97d0fa12ffb.zip | |
Keep alive index page
Diffstat (limited to 'src/client/app.vue')
| -rw-r--r-- | src/client/app.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app.vue b/src/client/app.vue index 458917d706..75036b01e8 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -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 }"> |