aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 5ab5c0d..f2089ee 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -207,7 +207,9 @@ export default {
207 this.currentPage = window.location.hash.substring(1) || "default"; 207 this.currentPage = window.location.hash.substring(1) || "default";
208 208
209 if (this.currentPage !== "default") { 209 if (this.currentPage !== "default") {
210 let pageConfig = await this.getConfig(`assets/${this.currentPage}.yml`); 210 let pageConfig = await this.getConfig(
211 `assets/${this.currentPage}.yml`
212 );
211 config = Object.assign(config, pageConfig); 213 config = Object.assign(config, pageConfig);
212 } 214 }
213 } catch (error) { 215 } catch (error) {