mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
feat(plugin-layout): 菜单支持配置额外的匹配规则
This commit is contained in:
parent
1bfb4b1c1a
commit
ab949fb6a8
@ -10,7 +10,7 @@ export default {
|
|||||||
title: '海贼王'
|
title: '海贼王'
|
||||||
},
|
},
|
||||||
router: {
|
router: {
|
||||||
mode: 'history'
|
mode: 'hash'
|
||||||
},
|
},
|
||||||
access: {
|
access: {
|
||||||
roles: {
|
roles: {
|
||||||
@ -39,7 +39,8 @@ export default {
|
|||||||
menus: [
|
menus: [
|
||||||
{
|
{
|
||||||
name: 'index',
|
name: 'index',
|
||||||
icon: '/wine-outline.svg'
|
icon: '/wine-outline.svg',
|
||||||
|
match: ['/route/*']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'store'
|
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