Buefy — Pagination and Progress Bar
2 min readJan 7, 2021
--
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"…