mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update app.js
This commit is contained in:
parent
27245f2ad6
commit
37740d7f7c
@ -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 () => {
|
;(async () => {
|
||||||
|
|
||||||
|
/*! 项目应用根路径 */
|
||||||
|
window.appRoot = (function (script) {
|
||||||
|
return '/' + script.src.split('/').slice(3, -2).join('/') + '/';
|
||||||
|
})(document.querySelector('script[type=module][src*="app.js"]'));
|
||||||
|
|
||||||
|
/*! 模块加载请求处理 */
|
||||||
const options = {
|
const options = {
|
||||||
moduleCache: {
|
moduleCache: {
|
||||||
vue: Vue,
|
vue: Vue, less: less
|
||||||
less: less,
|
|
||||||
cache: {},
|
|
||||||
}, getFile(url) {
|
}, getFile(url) {
|
||||||
if (!(/^(https?:)?\/\//)) {
|
if (!(/^(https?:)?\/\//)) {
|
||||||
url = (appRoot + url).replace(/\/+.?\/+/g, '/');
|
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");
|
app.cache.icons = await loadVue("/static/plugs/core/vue.element.icons.js");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user