Buefy — Dropdowns

John Au-Yeung
3 min readJan 4, 2021
Photo by Jimmy Chang on Unsplash

Buefy is a UI framework that’s based on Bulma.

In this article, we’ll look at how to use Buefy in our Vue app.

Dropdown

Buefy comes with its own dropdown component.

For example, we can add one by writing:

<template>
<section>
<b-dropdown aria-role="list">
<button class="button is-primary" slot="trigger"…

--

--