mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat(plugin-layout): 菜单支持配置额外的匹配规则
This commit is contained in:
parent
1bfb4b1c1a
commit
ab949fb6a8
@ -10,7 +10,7 @@ export default {
|
||||
title: '海贼王'
|
||||
},
|
||||
router: {
|
||||
mode: 'history'
|
||||
mode: 'hash'
|
||||
},
|
||||
access: {
|
||||
roles: {
|
||||
@ -39,7 +39,8 @@ export default {
|
||||
menus: [
|
||||
{
|
||||
name: 'index',
|
||||
icon: '/wine-outline.svg'
|
||||
icon: '/wine-outline.svg',
|
||||
match: ['/route/*']
|
||||
},
|
||||
{
|
||||
name: 'store'
|
||||
|
23
packages/fes-template/src/pages/route/@id.vue
Normal file
23
packages/fes-template/src/pages/route/@id.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div>
|
||||
{{params.id}}
|
||||
</div>
|
||||
</template>
|
||||
<config>
|
||||
{
|
||||
"name": "activeRoute",
|
||||
"title": "动态路由"
|
||||
}
|
||||
</config>
|
||||
<script>
|
||||
import { useRoute } from '@fesjs/fes';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const { params } = useRoute();
|
||||
return {
|
||||
params
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user