File tree Expand file tree Collapse file tree 4 files changed +27
-5
lines changed
Expand file tree Collapse file tree 4 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 55 "rewrites" : [
66 {
77 "source" : " **" ,
8- "destination" : " /index .html"
8+ "destination" : " /200 .html"
99 }
1010 ]
1111 }
Original file line number Diff line number Diff line change 2020 </v-navigation-drawer >
2121 <v-main :class =" { 'has-drawer': hasDrawer && $vuetify.breakpoint.lgAndUp }" >
2222 <toast ></toast >
23- <client-only >
24- <Nuxt v-if =" $store.getters.authStateChanged" />
25- <loading-dashboard v-else ></loading-dashboard >
26- </client-only >
23+ <Nuxt v-if =" $store.getters.authStateChanged" />
24+ <loading-dashboard v-else ></loading-dashboard >
2725 </v-main >
2826 </v-app >
2927</template >
Original file line number Diff line number Diff line change 1+ <template >
2+ <v-container fluid fill-height >
3+ <v-progress-circular
4+ indeterminate
5+ size =" 160"
6+ class =" mt-8 mx-auto"
7+ color =" primary"
8+ ></v-progress-circular >
9+ </v-container >
10+ </template >
11+
12+ <script lang="ts">
13+ import Vue from ' vue'
14+
15+ export default Vue .extend ({
16+ name: ' Router' ,
17+ mounted() {
18+ console .log (' routing to new page' , this .$route .path )
19+ this .$router .push ({
20+ path: this .$route .path ,
21+ })
22+ },
23+ })
24+ </script >
File renamed without changes.
You can’t perform that action at this time.
0 commit comments