From 5de611523c6f6d75f427b17a5f03ca13195768d0 Mon Sep 17 00:00:00 2001 From: chenghongxing <1126263215@qq.com> Date: Wed, 2 Dec 2020 22:30:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=EF=BC=9A=E5=BC=B9=E5=87=BA?= =?UTF-8?q?=E5=B1=82=E6=8C=82=E8=BD=BD=E5=AE=B9=E5=99=A8=E9=97=AE=E9=A2=98?= =?UTF-8?q?=EF=BC=9B:bug:=20fix:=20the=20problem=20of=20pop=20up=20layer?= =?UTF-8?q?=20mount=20container;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 2 +- src/App.vue | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index bab9584..803dbb4 100644 --- a/public/index.html +++ b/public/index.html @@ -15,7 +15,7 @@ -
+
diff --git a/src/App.vue b/src/App.vue index a91c4ec..7e5ea74 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@ @@ -77,6 +77,9 @@ export default { const key = route.path === '/' ? 'home.name' : getI18nKey(route.matched[route.matched.length - 1].path) document.title = process.env.VUE_APP_NAME + ' | ' + this.$t(key) }, + popContainer() { + return document.getElementById("popContainer") + } } }