commit 6e6e405efb788f0c65e24e8c0634c8a0fe45a3fb parent 0fe16735e5144230604f7dff0c9ada3d9ec04a13 Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com> Date: Fri, 20 Aug 2021 16:30:04 -0700 Cache inactive pages Diffstat:
| M | src/App.vue | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/App.vue b/src/App.vue @@ -15,7 +15,9 @@ </header> <div id="route-content"> - <router-view/> + <keep-alive> + <router-view/> + </keep-alive> </div> </div> </template>