harrywan 864904e68d
fix: 打开相同path的链接会更新route & 第一次打开会触发onActivated (#145)
* fix: 打开相同path的链接会更新route & 第一次打开会触发onActivated

* fix: 优化
2022-08-08 10:21:11 +08:00

103 lines
2.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// .fes.js 只负责管理编译时配置只能使用plain Object
export default {
// exportStatic: {},
define: {
__DEV__: false
},
publicPath: './',
html: {
title: '海贼王'
},
router: {
mode: 'hash'
},
watermark: {
disabled: false
},
access: {
roles: {
admin: ['*'],
menuTest: ['/', '/menuTest']
}
},
request: {
dataField: 'result'
},
mock: {
prefix: '/v2'
},
proxy: {
'/v2': {
target: 'https://api.douban.com/',
changeOrigin: true
}
},
layout: {
title: 'Fes.js',
footer: 'Created by MumbleFE',
multiTabs: true,
navigation: 'side',
theme: 'dark',
menus: [
{
name: 'index',
icon: '/wine-outline.svg',
match: ['/route/*']
},
{
name: 'store'
},
{
name: 'editor',
icon: '/wine-outline.svg'
},
{
title: '$externalLink',
icon: 'UserOutlined',
path: 'https://www.baidu.com'
},
{
name: 'mock'
},
{
title: '菜单权限测试',
children: [
{
title: '子菜单',
path: '/menuTest'
},
]
},
{
name: 'cssModule'
},
{
name: 'pinia'
}
],
menuConfig: {
defaultExpandAll: false
}
},
locale: {
legacy: true
},
devServer: {
port: 8080
},
enums: {
status: [
['0', '无效的'],
['1', '有效的']
]
},
vuex: {
strict: true
},
dynamicImport: true,
monacoEditor: {
languages: ['javascript', 'typescript', 'html', 'json']
}
};