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>
<body ontouchstart="">
<div id="app"></div>
<div id="<%= mountElementId %>"></div>
<!-- built files will be auto injected -->
</body>

View File

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

View File

@ -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,
},
};

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>
<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>

View File

@ -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 />,
};