From 37740d7f7cdd3528ddb0d08c4896f5dc9c1fd151 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 6 Jan 2022 10:44:25 +0800 Subject: [PATCH] Update app.js --- static/app.js | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/static/app.js b/static/app.js index 2762b5121..0086177df 100644 --- a/static/app.js +++ b/static/app.js @@ -1,14 +1,14 @@ -/*! 项目应用根路径 */ -window.appRoot = (function (script) { - return '/' + script.src.split('/').slice(3, -2).join('/') + '/'; -})(document.querySelector('script[src][type=module]:last-child')); - ;(async () => { + + /*! 项目应用根路径 */ + window.appRoot = (function (script) { + return '/' + script.src.split('/').slice(3, -2).join('/') + '/'; + })(document.querySelector('script[type=module][src*="app.js"]')); + + /*! 模块加载请求处理 */ const options = { moduleCache: { - vue: Vue, - less: less, - cache: {}, + vue: Vue, less: less }, getFile(url) { if (!(/^(https?:)?\/\//)) { url = (appRoot + url).replace(/\/+.?\/+/g, '/'); @@ -71,7 +71,10 @@ window.appRoot = (function (script) { })); // 定义全局缓存 - app.cache = {loadVue: loadVue}; + app.cache = { + loadOpt: options, + loadVue: loadVue, + }; // 全局字体文件 app.cache.icons = await loadVue("/static/plugs/core/vue.element.icons.js");