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
Source:stackexchange.com