From 121cd4180559bafdfeb9655fc4fece8f8507ac79 Mon Sep 17 00:00:00 2001 From: Kenzo-Hugo Hillion <kenzo-hugo.hillion1@pasteur.fr> Date: Fri, 5 Jun 2020 19:36:12 +0200 Subject: [PATCH] add footer and modify keep alive behavior --- frontend/src/App.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 45c52ac..1caff4e 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -2,10 +2,15 @@ <v-app> <Navbar/> <v-content class="ma-3"> - <keep-alive> + <keep-alive :exclude="/gene-detail.*/"> <router-view></router-view> </keep-alive> + </v-content> + <v-footer class="pa-3"> + <v-spacer></v-spacer> + <div>Some footer (<span class="font-italic font-weight-light">hash latest commit</span>)</div> + </v-footer> </v-app> </template> -- GitLab