Buefy — Sticky Headers and Footers

John Au-Yeung
3 min readJan 11, 2021
Photo by Sophia Baboolal 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.

Sticky Headers and Columns

We can add the sticky-header prop to show a scrolling table with fixed headers.

For example, we can write:

<template>
<div id="app">
<b-table…

--

--