diff --git a/styleguide/src/system/components/navigation/Menu/Menu.vue b/styleguide/src/system/components/navigation/Menu/Menu.vue index 7d36fd6cc..6ff19120a 100644 --- a/styleguide/src/system/components/navigation/Menu/Menu.vue +++ b/styleguide/src/system/components/navigation/Menu/Menu.vue @@ -98,6 +98,15 @@ export default { return route.name } }, + /** + * Function that matches items exactly + */ + matcher: { + type: Function, + default: () => { + return false + } + }, /** * Function that checks if the url must be matched exactly in order to activate the menu item. By default only '/' must be matched exactly. */ diff --git a/styleguide/src/system/components/navigation/Menu/MenuItem.vue b/styleguide/src/system/components/navigation/Menu/MenuItem.vue index 83ce8fa2c..047537e51 100644 --- a/styleguide/src/system/components/navigation/Menu/MenuItem.vue +++ b/styleguide/src/system/components/navigation/Menu/MenuItem.vue @@ -14,6 +14,9 @@