@@ -319,6 +319,7 @@ fields: [
319319| ---- | ---- | -----------
320320| ` striped ` | Boolean | Add zebra-striping to the table rows within the ` <tbody> `
321321| ` bordered ` | Boolean | For borders on all sides of the table and cells.
322+ | ` borderless ` | Boolean | removes inner borders from table.
322323| ` outlined ` | Boolean | For a thin border on all sides of the table. Has no effect if ` bordered ` is set.
323324| ` small ` | Boolean | To make tables more compact by cutting cell padding in half.
324325| ` hover ` | Boolean | To enable a hover highlighting state on table rows within a ` <tbody> `
@@ -334,17 +335,20 @@ fields: [
334335``` html
335336<template >
336337 <div >
337- <b-form-checkbox inline v-model =" striped" >Striped</b-form-checkbox >
338- <b-form-checkbox inline v-model =" bordered" >Bordered</b-form-checkbox >
339- <b-form-checkbox inline v-model =" outlined" >Outlined</b-form-checkbox >
340- <b-form-checkbox inline v-model =" small" >Small</b-form-checkbox >
341- <b-form-checkbox inline v-model =" hover" >Hover</b-form-checkbox >
342- <b-form-checkbox inline v-model =" dark" >Dark</b-form-checkbox >
343- <b-form-checkbox inline v-model =" fixed" >Fixed</b-form-checkbox >
344- <b-form-checkbox inline v-model =" footClone" >Foot Clone</b-form-checkbox >
345-
338+ <b-form-group label =" Table Options" >
339+ <b-form-checkbox inline v-model =" striped" >Striped</b-form-checkbox >
340+ <b-form-checkbox inline v-model =" bordered" >Bordered</b-form-checkbox >
341+ <b-form-checkbox inline v-model =" borderless" >Borderless</b-form-checkbox >
342+ <b-form-checkbox inline v-model =" outlined" >Outlined</b-form-checkbox >
343+ <b-form-checkbox inline v-model =" small" >Small</b-form-checkbox >
344+ <b-form-checkbox inline v-model =" hover" >Hover</b-form-checkbox >
345+ <b-form-checkbox inline v-model =" dark" >Dark</b-form-checkbox >
346+ <b-form-checkbox inline v-model =" fixed" >Fixed</b-form-checkbox >
347+ <b-form-checkbox inline v-model =" footClone" >Foot Clone</b-form-checkbox >
348+ </b-form-group >
346349 <b-table :striped =" striped"
347350 :bordered =" bordered"
351+ :borderless =" borderless"
348352 :outlined =" outlined"
349353 :small =" small"
350354 :hover =" hover"
@@ -369,6 +373,7 @@ export default {
369373 ],
370374 striped: false ,
371375 bordered: false ,
376+ borderless: false ,
372377 outlined: false ,
373378 small: false ,
374379 hover: false ,
0 commit comments