This commit is contained in:
winixt 2021-07-07 17:29:41 +08:00
commit 2aa1f7d0cd
7 changed files with 21 additions and 16 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "2.0.0", "version": "independent",
"changelog": { "changelog": {
"repo": "WeBankFinTech/fes.js", "repo": "WeBankFinTech/fes.js",
"cacheDir": ".changelog", "cacheDir": ".changelog",

View File

@ -1,6 +1,6 @@
{ {
"name": "@fesjs/create-fes-app", "name": "@fesjs/create-fes-app",
"version": "2.0.0", "version": "2.0.1",
"description": "create a app base on fes.js", "description": "create a app base on fes.js",
"main": "lib/index.js", "main": "lib/index.js",
"files": [ "files": [

View File

@ -51,8 +51,8 @@
"@fesjs/plugin-layout": "^2.0.0", "@fesjs/plugin-layout": "^2.0.0",
"@fesjs/plugin-model": "^2.0.0", "@fesjs/plugin-model": "^2.0.0",
"@fesjs/plugin-enums": "^2.0.0", "@fesjs/plugin-enums": "^2.0.0",
"ant-design-vue": "^2.0.0", "ant-design-vue": "^2.2.0",
"vue": "^3.0.5" "vue": "^3.1.0"
}, },
"private": true "private": true
} }

View File

@ -1,5 +1,5 @@
<template> <template>
<div>{{initialState.userName}}</div> <div class="right">{{initialState.userName}}</div>
</template> </template>
<script> <script>
import { useModel } from '@fesjs/fes'; import { useModel } from '@fesjs/fes';
@ -13,3 +13,9 @@ export default {
} }
}; };
</script> </script>
<style scope>
.right {
text-align: right;
padding: 0 20px;
}
</style>

View File

@ -1,6 +1,6 @@
{ {
"name": "@fesjs/preset-built-in", "name": "@fesjs/preset-built-in",
"version": "2.0.0", "version": "2.0.1",
"description": "@fesjs/preset-built-in", "description": "@fesjs/preset-built-in",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@ -3,13 +3,6 @@ import { plugin } from '@@/core/coreExports';
export function getRoutes() { export function getRoutes() {
const routes = {{{ routes }}}; const routes = {{{ routes }}};
plugin.applyPlugins({
key: 'patchRoutes',
type: ApplyPluginsType.event,
args: { routes },
});
return routes; return routes;
} }
@ -28,7 +21,13 @@ export const createRouter = (routes) => {
}, },
initialValue: {{{ CREATE_HISTORY }}}, initialValue: {{{ CREATE_HISTORY }}},
}); });
history = createHistory(ROUTER_BASE) history = createHistory(ROUTER_BASE);
// 修改routes
plugin.applyPlugins({
key: 'patchRoutes',
type: ApplyPluginsType.event,
args: { routes },
});
router = createVueRouter({ router = createVueRouter({
history, history,
routes routes

View File

@ -1,6 +1,6 @@
{ {
"name": "@fesjs/fes", "name": "@fesjs/fes",
"version": "2.0.0", "version": "2.0.1",
"description": "一个好用的前端管理台快速开发框架", "description": "一个好用的前端管理台快速开发框架",
"preferGlobal": true, "preferGlobal": true,
"scripts": { "scripts": {
@ -40,7 +40,7 @@
], ],
"dependencies": { "dependencies": {
"@fesjs/compiler": "^2.0.0", "@fesjs/compiler": "^2.0.0",
"@fesjs/preset-built-in": "^2.0.0", "@fesjs/preset-built-in": "^2.0.1",
"@fesjs/runtime": "^2.0.0", "@fesjs/runtime": "^2.0.0",
"@umijs/utils": "3.3.3", "@umijs/utils": "3.3.3",
"resolve-cwd": "^3.0.0" "resolve-cwd": "^3.0.0"