fix: 模板优化

This commit is contained in:
wanchun 2022-05-17 11:25:47 +08:00
parent e433327dfd
commit 072597fcad
7 changed files with 26 additions and 22 deletions

View File

@ -1 +1,3 @@
public-hoist-pattern[]=@babel/* public-hoist-pattern[]=@babel/*
# 使用pnpm必须加上
shamefully-hoist=true

View File

@ -17,7 +17,7 @@
</head> </head>
<body ontouchstart=""> <body ontouchstart="">
<div id="app"></div> <div id="<%= mountElementId %>"></div>
<!-- built files will be auto injected --> <!-- built files will be auto injected -->
</body> </body>

View File

@ -2,6 +2,6 @@ export const request = {
errorConfig: { errorConfig: {
404() { 404() {
console.log('to 404 page'); console.log('to 404 page');
} },
} },
}; };

View File

@ -2,13 +2,10 @@ module.exports = {
extends: ['@webank/eslint-config-webank/vue.js'], extends: ['@webank/eslint-config-webank/vue.js'],
overrides: [ overrides: [
{ {
files: [ files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
'**/__tests__/*.{j,t}s?(x)', },
'**/tests/unit/**/*.spec.{j,t}s?(x)'
]
}
], ],
env: { env: {
jest: true jest: true,
} },
}; };

View File

@ -1 +1,3 @@
public-hoist-pattern[]=@babel/* public-hoist-pattern[]=@babel/*
# 使用pnpm必须加上
shamefully-hoist=true

View File

@ -1,12 +1,17 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <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"> <link rel="shortcut icon" type="image/x-icon" href="./logo.png">
</head> </head>
<body> <body>
<div id="app"></div> <div id="<%= mountElementId %>"></div>
</body> </body>
</html>
</html>

View File

@ -1,8 +1,6 @@
import { access } from '@fesjs/fes'; import { access } from '@fesjs/fes';
import PageLoading from '@/components/PageLoading'; import PageLoading from '@/components/PageLoading.vue';
import UserCenter from '@/components/UserCenter'; import UserCenter from '@/components/UserCenter.vue';
export const beforeRender = { export const beforeRender = {
loading: <PageLoading />, loading: <PageLoading />,
@ -13,13 +11,13 @@ export const beforeRender = {
setRole('admin'); setRole('admin');
// useModel('@@initialState') @/components/UserCenter // useModel('@@initialState') @/components/UserCenter
resolve({ resolve({
userName: '李雷' userName: '李雷',
}); });
}, 1000); }, 1000);
}); });
} },
}; };
export const layout = { export const layout = {
customHeader: <UserCenter /> customHeader: <UserCenter />,
}; };