Skip to content

Commit bd8012f

Browse files
committed
Fix issues with routing after generation
1 parent e04791f commit bd8012f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

web/layouts/default.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@
2020
</v-navigation-drawer>
2121
<v-main :class="{ 'has-drawer': hasDrawer && $vuetify.breakpoint.lgAndUp }">
2222
<toast></toast>
23-
<Nuxt v-if="$store.getters.authStateChanged" />
24-
<loading-dashboard v-else></loading-dashboard>
23+
<client-only>
24+
<Nuxt v-if="$store.getters.authStateChanged" />
25+
<loading-dashboard v-else></loading-dashboard>
26+
</client-only>
2527
</v-main>
2628
</v-app>
2729
</template>

0 commit comments

Comments
 (0)