feat(plugin-layout): 菜单支持配置额外的匹配规则

This commit is contained in:
wanchun 2022-01-05 16:38:02 +08:00
parent 1bfb4b1c1a
commit ab949fb6a8
2 changed files with 26 additions and 2 deletions

View File

@ -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'

View 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>