mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: 模板优化
This commit is contained in:
parent
e433327dfd
commit
072597fcad
@ -1 +1,3 @@
|
||||
public-hoist-pattern[]=@babel/*
|
||||
public-hoist-pattern[]=@babel/*
|
||||
# 使用pnpm必须加上
|
||||
shamefully-hoist=true
|
@ -17,7 +17,7 @@
|
||||
</head>
|
||||
|
||||
<body ontouchstart="">
|
||||
<div id="app"></div>
|
||||
<div id="<%= mountElementId %>"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
|
||||
|
@ -2,6 +2,6 @@ export const request = {
|
||||
errorConfig: {
|
||||
404() {
|
||||
console.log('to 404 page');
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
|
@ -2,13 +2,10 @@ module.exports = {
|
||||
extends: ['@webank/eslint-config-webank/vue.js'],
|
||||
overrides: [
|
||||
{
|
||||
files: [
|
||||
'**/__tests__/*.{j,t}s?(x)',
|
||||
'**/tests/unit/**/*.spec.{j,t}s?(x)'
|
||||
]
|
||||
}
|
||||
files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
|
||||
},
|
||||
],
|
||||
env: {
|
||||
jest: true
|
||||
}
|
||||
jest: true,
|
||||
},
|
||||
};
|
||||
|
@ -1 +1,3 @@
|
||||
public-hoist-pattern[]=@babel/*
|
||||
public-hoist-pattern[]=@babel/*
|
||||
# 使用pnpm必须加上
|
||||
shamefully-hoist=true
|
@ -1,12 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>fes.js</title>
|
||||
<title>
|
||||
<%= title %>
|
||||
</title>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="./logo.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<div id="<%= mountElementId %>"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</html>
|
@ -1,8 +1,6 @@
|
||||
|
||||
|
||||
import { access } from '@fesjs/fes';
|
||||
import PageLoading from '@/components/PageLoading';
|
||||
import UserCenter from '@/components/UserCenter';
|
||||
import PageLoading from '@/components/PageLoading.vue';
|
||||
import UserCenter from '@/components/UserCenter.vue';
|
||||
|
||||
export const beforeRender = {
|
||||
loading: <PageLoading />,
|
||||
@ -13,13 +11,13 @@ export const beforeRender = {
|
||||
setRole('admin');
|
||||
// 初始化应用的全局状态,可以通过 useModel('@@initialState') 获取,具体用法看@/components/UserCenter 文件
|
||||
resolve({
|
||||
userName: '李雷'
|
||||
userName: '李雷',
|
||||
});
|
||||
}, 1000);
|
||||
});
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
export const layout = {
|
||||
customHeader: <UserCenter />
|
||||
customHeader: <UserCenter />,
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user