[Vuejs]-Top navigation menu depending on sidebar

2👍

When you set up your topbar as such:

<header><topbar :key="$route.path"></topbar></header>

Any path change should trigger the topbar to refresh. If your sidebar should be static, then you don’t have to add a key parameter there so that that won’t be refreshed like the topbar will.

👤Joos

Leave a comment