Closed richardboydnz closed 4 years ago
The UI of the navbar appears to accept the click - but does not activate the contained nuxt-link.
From create-nuxt-app with buefy option - it generates the following inside layouts/default.vue:
layouts/default.vue
<nuxt-link :to="item.to" exact-active-class="is-active" > <b-icon :icon="item.icon" /> {{ item.title }} </nuxt-link> </b-navbar-item>
This doesn't work unless we put on this:
.navbar-item > a:only-child { display: block; width: 100%; }
Try setting 'nuxt-link' to tag prop of navbar item
prop
The UI of the navbar appears to accept the click - but does not activate the contained nuxt-link.
From create-nuxt-app with buefy option - it generates the following inside
layouts/default.vue
:This doesn't work unless we put on this: