[Vuejs]-Navbar dropdown is not leading to the given link

0๐Ÿ‘

โœ…

I made it work using example used here https://buefy.org/documentation/navbar

<b-navbar-dropdown label="Academics" class="is-hoverable">
  <template v-for="(each, index) in academicsArray">
    <b-navbar-item :key="index" :href="each.link">
      {{ each.text }}
    </b-navbar-item>
  </template>
</b-navbar-dropdown>

0๐Ÿ‘

You should use has-link in the b-dropdown-item.
See the doc here:ย https://buefy.org/documentation/dropdown#links-within

Leave a comment