summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/App.vue2
-rw-r--r--src/layouts/_sila/AppLayout.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index 9b51aa72..d2878946 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,6 +1,6 @@
<template>
<div id="app">
- <router-view :key="$route.fullPath" />
+ <router-view />
</div>
</template>
diff --git a/src/layouts/_sila/AppLayout.vue b/src/layouts/_sila/AppLayout.vue
index 1c9c39c7..65e1d5ec 100644
--- a/src/layouts/_sila/AppLayout.vue
+++ b/src/layouts/_sila/AppLayout.vue
@@ -8,7 +8,7 @@
/>
<app-navigation class="app-navigation" />
<page-container class="app-content">
- <router-view ref="routerView" :key="routerKey" />
+ <router-view ref="routerView" :key="$route.fullPath" />
<!-- Scroll to top button -->
<button-back-to-top />
</page-container>