From 84261c2a55bb9d4130febd160e67bdf4074b1134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 24 Nov 2021 23:45:01 +0800 Subject: [PATCH] Update app.js --- static/app.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/app.js b/static/app.js index 7b09c49f0..a8143a1c2 100644 --- a/static/app.js +++ b/static/app.js @@ -11,8 +11,9 @@ }); }, addStyle(textContent) { + const style = document.head.getElementsByTagName('style')[0] || null; const object = Object.assign(document.createElement('style'), {textContent}); - document.head.insertBefore(object, document.head.getElementsByTagName('style')[0] || null); + document.head.insertBefore(object, style); }, }; @@ -22,7 +23,7 @@ const app = Vue.createApp({ name: 'app', - components: {'layout': await loadVue('./static/template/layout.vue')} + components: {layout: await loadVue('./static/template/layout.vue')} }); const router = VueRouter.createRouter({