Override or Extend Core Admin UI Component (navigation-bookmark.vue)?

Currently, there’s no way to override core components without updating the source code directly.

The only other options you could try are:

  • DOM manipulation inside extensions - Use JavaScript to modify the rendered elements after they load
  • Custom CSS - Override styles to hide/show/modify the appearance of existing elements

Neither of these approaches are ideal since they’re brittle and could break with updates, but they might work as temporary workarounds depending on what you’re trying to achieve.

Why are you trying to change this?