[Vuejs]-Footer in b-table is not displayed – Bootstrap-vue

3👍

The issues you’re facing is with the version you’re using.

The custom-foot slot was introduces in the 2.0.0 release, and isn’t available in the rc version.

The same goes for your TEST 2 example.
The slot syntax you’re using here was introduced in 2.0.0.

Prior to that it was [field], HEAD[field] and FOOT[field] in the version 2.0.0-rc.28. (and ONLY this version).

In version 2.0.0-rc.27 and below it’s field, HEAD_field, FOOT_field.


I would suggest you look to upgrade your version, to get the latest features and fixes, as the one you’re currently on is quite old.

The only major patch in between the newest and the one you’re using was the 2.0.0 release which introduced some breaking changes.

There’s a migration guide you can use to avoid too many issues.

If you don’t want/can’t upgrade. You can instead clone down the git repository and generate the docs locally on your machine for the version you’re using. This way the information on the docs will match your version to avoid confusion.

You can even upload it to your own host if you need it to accessible online.

👤Hiws

Leave a comment