DEV Community

Discussion on: Dynamic Menu In Vue

Collapse
 
gauravgavhane05 profile image
Gaurav Gavhane

How to show nav items based on user roles like admin guest in vue dynamically

Collapse
 
ptheodosiou profile image
Pantelis Theodosiou

My first thought is about using vue-store. State management will help you to check if you have logged in user or not. Based on that info you can dynamically display wanted nav-items

Collapse
 
gauravgavhane05 profile image
Gaurav Gavhane

Yes. I found the solution with vuex and dynamic routing. Thanks for reply.