wangbd-myui
Version:
MY前端基础框架核心组件库
36 lines (25 loc) • 610 B
JavaScript
import {set as setConfig} from '$ui/config'
// 写入运行时配置
setConfig({
appName: '{{appName}}',
routePrefix: '/{{appName}}',
// 路由模式
router: {
mode: 'hash',
base: '/'
},
// 是否应用自动生成的路由配置
autoRoutes: true,
access: {
// 启用请求权限控制
axios: true,
// 启用路由权限控制
router: true,
// 缓存存储方式 session 或 local
storage: 'session',
// 登录页面路径
loginPath: '/login',
// 权限不足页面路径
authorizePath: '/403'
}
})