From 9e0f35e6c0001cb0dd7dd8bf3e9af7650c7ee000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Mon, 20 Dec 2021 22:23:02 +0800 Subject: [PATCH] Update app.js --- static/app.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/static/app.js b/static/app.js index c008209ad..991d595cc 100644 --- a/static/app.js +++ b/static/app.js @@ -6,8 +6,7 @@ window.appRoot = (function (script) { ;(async () => { const options = { moduleCache: { - vue: Vue, - less: less + vue: Vue, less: less }, getFile(url) { if (!(/^(https?:)?\/\//)) { url = (appRoot + url).replace(/\/+.?\/+/g, '/'); @@ -49,6 +48,9 @@ window.appRoot = (function (script) { }); next(); } else { + // 删除页面缓存,重新加载 + delete options.moduleCache[to.fullPath]; + // 动态注册路由并触发新路由 router.addRoute({name: name, path: to.fullPath, component: () => loadVue(to.fullPath)}); next({name: name}); }