Buefy — Pagination and Progress Bar

John Au-Yeung
2 min readJan 7, 2021
Photo by Sam Shin 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.

Pagination

Buefy comes with a pagination component.

We can add it with the b-pagination component:

<template>
<section>
<b-pagination
:total="total"
v-model="current"…

--

--