Vue Bootstrap Tables

Vue Tables - Bootstrap 4 & Material Design

Tables let you aggregate a huge amount of data and present it in the clear and orderly way. Vue Bootstrap tables provide additional benefits like responsiveness and the possibility to manipulate the styles of the tables. You can enhance your tables by adding buttons, checkboxes, panels, and many other additional elements. You can also use an advanced datatables options like sort, search or pagination.


Table with buttons

Have a look at Buttons documentation to learn more about all available buttons.

Add .m-0 class to the button within the table to remove unnecessary margins.

Regular buttons

# First Name Last Name Username
1 Otto @mdo
2 Jacob @fat
3 Larry the Bird

        <template>
          <mdb-tbl btn responsive striped>
            <mdb-tbl-head>
              <tr>
                <th>#</th>
                <th>First Name</th>
                <th>Last Name</th>
                <th>Username</th>
              </tr>
            </mdb-tbl-head>
            <mdb-tbl-body>
              <tr>
                <th scope="row">1</th>
                <td>
                  <button type="button" class="btn btn-indigo btn-sm m-0">Button</button>
                </td>
                <td>Otto</td>
                <td>@mdo</td>
              </tr>
              <tr>
                <th scope="row">2</th>
                <td>Jacob</td>
                <td>
                  <button type="button" class="btn btn-indigo btn-sm m-0">Button</button>
                </td>
                <td>@fat</td>
              </tr>
              <tr>
                <th scope="row">3</th>
                <td>Larry</td>
                <td>the Bird</td>
                <td>
                  <button type="button" class="btn btn-indigo btn-sm m-0">Button</button>
                </td>
              </tr>
            </mdb-tbl-body>
          </mdb-tbl>
        </template>
      

        <script>
          import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
          export default {
            name: 'TableAdditionalPage',
            components: {
              mdbTbl,
              mdbTblHead,
              mdbTblBody
            }
          }
        </script>
      

Outline buttons

# First Name Last Name Username
1 Otto @mdo
2 Jacob @fat
3 Larry the Bird

        <template>
          <mdb-tbl btn responsive striped>
            <mdb-tbl-head>
              <tr>
                <th>#</th>
                <th>First Name</th>
                <th>Last Name</th>
                <th>Username</th>
              </tr>
            </mdb-tbl-head>
            <mdb-tbl-body>
              <tr>
                <th scope="row">1</th>
                <td>
                  <button type="button" class="btn btn-outline-indigo btn-sm m-0">Button</button>
                </td>
                <td>Otto</td>
                <td>@mdo</td>
              </tr>
              <tr>
                <th scope="row">2</th>
                <td>Jacob</td>
                <td>
                  <button type="button" class="btn btn-outline-indigo btn-sm m-0">Button</button>
                </td>
                <td>@fat</td>
              </tr>
              <tr>
                <th scope="row">3</th>
                <td>Larry</td>
                <td>the Bird</td>
                <td>
                  <button type="button" class="btn btn-outline-indigo btn-sm m-0">Button</button>
                </td>
              </tr>
            </mdb-tbl-body>
          </mdb-tbl>
        </template>
      

        <script>
          import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
          export default {
            name: 'TableAdditionalPage',
            components: {
              mdbTbl,
              mdbTblHead,
              mdbTblBody
            }
          }
        </script>
      

Rounded buttons MDB Pro component

# First Name Last Name Username
1 Otto @mdo
2 Jacob @fat
3 Larry the Bird

        <template>
          <mdb-tbl btn responsive striped>
            <mdb-tbl-head>
              <tr>
                <th>#</th>
                <th>First Name</th>
                <th>Last Name</th>
                <th>Username</th>
              </tr>
            </mdb-tbl-head>
            <mdb-tbl-body>
              <tr>
                <th scope="row">1</th>
                <td>
                  <button type="button" class="btn btn-teal btn-rounded btn-sm m-0">Button</button>
                </td>
                <td>Otto</td>
                <td>@mdo</td>
              </tr>
              <tr>
                <th scope="row">2</th>
                <td>Jacob</td>
                <td>
                  <button type="button" class="btn btn-teal btn-rounded btn-sm m-0">Button</button>
                </td>
                <td>@fat</td>
              </tr>
              <tr>
                <th scope="row">3</th>
                <td>Larry</td>
                <td>the Bird</td>
                <td>
                  <button type="button" class="btn btn-teal btn-rounded btn-sm m-0">Button</button>
                </td>
              </tr>
            </mdb-tbl-body>
          </mdb-tbl>
        </template>
      

        <script>
          import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
          export default {
            name: 'TableAdditionalPage',
            components: {
              mdbTbl,
              mdbTblHead,
              mdbTblBody
            }
          }
        </script>
      

Table with checkboxes

See all available options of checkboxes in the Checkbox documentation.

Default checkboxes

Lorem Ipsum Dolor
Cell 1 Cell 2 Cell 3
Cell 4 Cell 5 Cell 6
Cell 7 Cell 8 Cell 9

       <template>
          <!-- Table  -->
        <mdb-tbl responsive bordered>
            <!-- Table head -->
            <mdb-tbl-head>
                <tr>
                    <th>
                        <!-- Default unchecked -->
                        <div class="custom-control custom-checkbox">
                            <input type="checkbox" class="custom-control-input" id="tableDefaultCheck1">
                            <label class="custom-control-label" for="tableDefaultCheck1">Check 1</label>
                        </div>
                    </th>
                    <th>Lorem</th>
                    <th>Ipsum</th>
                    <th>Dolor</th>
                </tr>
              </mdb-tbl-head>
            <!-- Table head -->

            <!-- Table body -->
            <mdb-tbl-body>
                <tr>
                    <th scope="row">
                        <!-- Default unchecked -->
                        <div class="custom-control custom-checkbox">
                            <input type="checkbox" class="custom-control-input" id="tableDefaultCheck2" checked>
                            <label class="custom-control-label" for="tableDefaultCheck2">Check 2</label>
                        </div>
                    </th>
                    <td>Cell 1</td>
                    <td>Cell 2</td>
                    <td>Cell 3</td>
                </tr>
                <tr>
                    <th scope="row">
                        <!-- Default unchecked -->
                        <div class="custom-control custom-checkbox">
                            <input type="checkbox" class="custom-control-input" id="tableDefaultCheck3">
                            <label class="custom-control-label" for="tableDefaultCheck3">Check 3</label>
                        </div>
                    </th>
                    <td>Cell 4</td>
                    <td>Cell 5</td>
                    <td>Cell 6</td>
                </tr>
                <tr>
                    <th scope="row">
                        <!-- Default unchecked -->
                        <div class="custom-control custom-checkbox">
                            <input type="checkbox" class="custom-control-input" id="tableDefaultCheck4">
                            <label class="custom-control-label" for="tableDefaultCheck4">Check 4</label>
                        </div>
                    </th>
                    <td>Cell 7</td>
                    <td>Cell 8</td>
                    <td>Cell 9</td>
                </tr>
            </mdb-tbl-body>
            <!-- Table body -->
          </mdb-tbl>
        <!-- Table  -->
       </template>
      

        <script>
            import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
            export default {
              name: 'TableAdditionalPage',
              components: {
                mdbTbl,
                mdbTblHead,
                mdbTblBody
              }
            }
        </script>
      

Material checkboxes MDB Pro component

Lorem Ipsum Dolor
Cell 1 Cell 2 Cell 3
Cell 4 Cell 5 Cell 6
Cell 7 Cell 8 Cell 9

        <template>
          <!-- Table  -->
          <mdb-tbl>
              <!-- Table head -->
              <mdb-tbl-head>
                <tr>
                  <th>
                    <!-- Material unchecked -->
                    <div class="form-check">
                      <input type="checkbox" class="form-check-input" id="tableMaterialCheck1">
                      <label class="form-check-label" for="tableMaterialCheck1">Check 1</label>
                    </div>
                  </th>
                  <th>Lorem</th>
                  <th>Ipsum</th>
                  <th>Dolor</th>
                </tr>
              </mdb-tbl-head>
              <!-- Table head -->

              <!-- Table body -->
              <mdb-tbl-body>
                <tr>
                  <th scope="row">
                    <!-- Material unchecked -->
                    <div class="form-check">
                        <input type="checkbox" class="form-check-input" id="tableMaterialCheck2">
                        <label class="form-check-label" for="tableMaterialCheck2">Check 2</label>
                      </div>
                  </th>
                  <td>Cell 1</td>
                  <td>Cell 2</td>
                  <td>Cell 3</td>
                </tr>
                <tr>
                  <th scope="row">
                    <!-- Material unchecked -->
                    <div class="form-check">
                        <input type="checkbox" class="form-check-input" id="tableMaterialCheck3">
                        <label class="form-check-label" for="tableMaterialCheck3">Check 3</label>
                      </div>
                  </th>
                  <td>Cell 4</td>
                  <td>Cell 5</td>
                  <td>Cell 6</td>
                </tr>
                <tr>
                  <th scope="row">
                    <!-- Material unchecked -->
                    <div class="form-check">
                        <input type="checkbox" class="form-check-input" id="tableMaterialCheck4">
                        <label class="form-check-label" for="tableMaterialCheck4">Check 4</label>
                      </div>
                  </th>
                  <td>Cell 7</td>
                  <td>Cell 8</td>
                  <td>Cell 9</td>
                </tr>
              </mdb-tbl-body>
              <!-- Table body -->
            </mdb-tbl>
            <!-- Table  -->
          </template>
      

          <script>
            import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
            export default {
              name: 'TableAdditionalPage',
              components: {
                mdbTbl,
                mdbTblHead,
                mdbTblBody
              }
            }
          </script>
        

Table with icons

To learn more about icons read Icons usage documentation or Full list of 600+ icons

# Lorem Ipsum Dolor
1 Cell 1 Cell 2 Cell 3
2 Cell 4 Cell 5 Cell 6
3 Cell 7 Cell 8 Cell 9

        <template>
          <!-- Table  -->
          <mdb-tbl>
            <!-- Table head -->
            <mdb-tbl-head>
              <tr>
                <th>#</th>
                <th><i class="fas fa-leaf mr-2 blue-text" aria-hidden="true"></i>Lorem</th>
                <th><i class="fas fa-leaf mr-2 teal-text" aria-hidden="true"></i>Ipsum</th>
                <th><i class="fas fa-leaf mr-2 indigo-text" aria-hidden="true"></i>Dolor</th>
              </tr>
            </mdb-tbl-head>
            <!-- Table head -->

            <!-- Table body -->
            <mdb-tbl-body>
              <tr>
                <th scope="row">1</th>
                <td><i class="far fa-gem mr-2 grey-text" aria-hidden="true"></i>Cell 1</td>
                <td><i class="fas fa-download mr-2 grey-text" aria-hidden="true"></i>Cell 2</td>
                <td><i class="fas fa-book mr-2 grey-text" aria-hidden="true"></i>Cell 3</td>
              </tr>
              <tr>
                <th scope="row">2</th>
                <td><i class="fas fa-graduation-cap mr-2 grey-text" aria-hidden="true"></i>Cell 4</td>
                <td><i class="fas fa-gift mr-2 grey-text" aria-hidden="true"></i>Cell 5</td>
                <td><i class="fas fa-image mr-2 grey-text" aria-hidden="true"></i>Cell 6</td>
              </tr>
              <tr>
                <th scope="row">3</th>
                <td><i class="fas fa-magic mr-2 grey-text" aria-hidden="true"></i>Cell 7</td>
                <td><i class="fas fa-table mr-2 grey-text" aria-hidden="true"></i>Cell 8</td>
                <td><i class="fas fa-edit mr-2 grey-text" aria-hidden="true"></i>Cell 9</td>
              </tr>
            </mdb-tbl-body>
            <!-- Table body -->
          </mdb-tbl>
          <!-- Table  -->
        </template>
      

        <script>
          import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
          export default {
            name: 'TableAdditionalPage',
            components: {
              mdbTbl,
              mdbTblHead,
              mdbTblBody
            }
          }
        </script>
      

Table with panel

See all the available options in the Panels documentation and Cards documentation.

First Name Last Name Username Username Username Username
Mark Otto @mdo Mark Otto @mdo
Jacob Thornton @fat Jacob Thornton @fat
Larry the Bird @twitter Larry the Bird @twitter
Paul Topolski @P_Topolski Paul Topolski @P_Topolski
Larry the Bird @twitter Larry the Bird @twitter

        <template>
          <!-- Table with panel -->
          <div class="card card-cascade narrower">
              <!--Card image-->
              <div class="view view-cascade gradient-card-header blue-gradient narrower py-2 mx-4 mb-3 d-flex justify-content-between align-items-center">
                  <div>
                      <button type="button" class="btn btn-outline-white btn-rounded btn-sm px-2">
                          <i class="fas fa-th-large mt-0"></i>
                      </button>
                      <button type="button" class="btn btn-outline-white btn-rounded btn-sm px-2">
                          <i class="fas fa-columns mt-0"></i>
                      </button>
                  </div>
                  <a href="" class="white-text mx-3">Table name</a>
                  <div>
                      <button type="button" class="btn btn-outline-white btn-rounded btn-sm px-2">
                          <i class="fas fa-pencil-alt mt-0"></i>
                      </button>
                      <button type="button" class="btn btn-outline-white btn-rounded btn-sm px-2">
                          <i class="fas fa-times mt-0"></i>
                      </button>
                      <button type="button" class="btn btn-outline-white btn-rounded btn-sm px-2">
                          <i class="fas fa-info-circle mt-0"></i>
                      </button>
                  </div>
              </div>
              <!--/Card image-->
              <div class="px-4">
                  <div class="table-wrapper">
                      <!--Table-->
                      <mdb-tbl class="table table-hover mb-0">
                          <!--Table head-->
                          <mdb-tbl-head>
                              <tr>
                                  <th>
                                      <input class="form-check-input" type="checkbox" id="checkbox">
                                      <label class="form-check-label mr-2" for="checkbox"></label>
                                  </th>
                                  <th class="th-lg">
                                      <a>First Name
                                          <i class="fas fa-sort ml-1"></i>
                                      </a>
                                  </th>
                                  <th class="th-lg">
                                      <a href="">Last Name
                                          <i class="fas fa-sort ml-1"></i>
                                      </a>
                                  </th>
                                  <th class="th-lg">
                                      <a href="">Username
                                          <i class="fas fa-sort ml-1"></i>
                                      </a>
                                  </th>
                                  <th class="th-lg">
                                      <a href="">Username
                                          <i class="fas fa-sort ml-1"></i>
                                      </a>
                                  </th>
                                  <th class="th-lg">
                                      <a href="">Username
                                          <i class="fas fa-sort ml-1"></i>
                                      </a>
                                  </th>
                                  <th class="th-lg">
                                      <a href="">Username
                                          <i class="fas fa-sort ml-1"></i>
                                      </a>
                                  </th>
                              </tr>
                            </mdb-tbl-head>
                          <!--Table head-->

                          <!--Table body-->
                          <mdb-tbl-body>
                              <tr>
                                  <th scope="row">
                                      <input class="form-check-input" type="checkbox" id="checkbox1">
                                      <label class="form-check-label" for="checkbox1"></label>
                                  </th>
                                  <td>Mark</td>
                                  <td>Otto</td>
                                  <td>@mdo</td>
                                  <td>Mark</td>
                                  <td>Otto</td>
                                  <td>@mdo</td>
                              </tr>
                              <tr>
                                  <th scope="row">
                                      <input class="form-check-input" type="checkbox" id="checkbox2">
                                      <label class="form-check-label" for="checkbox2"></label>
                                  </th>
                                  <td>Jacob</td>
                                  <td>Thornton</td>
                                  <td>@fat</td>
                                  <td>Jacob</td>
                                  <td>Thornton</td>
                                  <td>@fat</td>
                              </tr>
                              <tr>
                                  <th scope="row">
                                      <input class="form-check-input" type="checkbox" id="checkbox3">
                                      <label class="form-check-label" for="checkbox3"></label>
                                  </th>
                                  <td>Larry</td>
                                  <td>the Bird</td>
                                  <td>@twitter</td>
                                  <td>Larry</td>
                                  <td>the Bird</td>
                                  <td>@twitter</td>
                              </tr>
                              <tr>
                                  <th scope="row">
                                      <input class="form-check-input" type="checkbox" id="checkbox4">
                                      <label class="form-check-label" for="checkbox4"></label>
                                  </th>
                                  <td>Paul</td>
                                  <td>Topolski</td>
                                  <td>@P_Topolski</td>
                                  <td>Paul</td>
                                  <td>Topolski</td>
                                  <td>@P_Topolski</td>
                              </tr>
                              <tr>
                                  <th scope="row">
                                      <input class="form-check-input" type="checkbox" id="checkbox5">
                                      <label class="form-check-label" for="checkbox5"></label>
                                  </th>
                                  <td>Larry</td>
                                  <td>the Bird</td>
                                  <td>@twitter</td>
                                  <td>Larry</td>
                                  <td>the Bird</td>
                                  <td>@twitter</td>
                              </tr>
                          </mdb-tbl-body>
                          <!--Table body-->
                      </mdb-tbl>
                      <!--Table-->
                  </div>
              </div>
          </div>
          <!-- Table with panel -->
        </template>
      

        <script>
            import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
            export default {
              name: 'TableAdditionalPage',
              components: {
                mdbTbl,
                mdbTblHead,
                mdbTblBody
              }
            }
        </script>
      

Advanced table options

For advanced options of the tables have a look at specific documentation pages listed below.

Table sort

This functionality lets you sort the data of the tables according to any specific columns.

Table scroll

If your table is too long or too wide you can limit its size and enable scroll functionality.

Table editable

Table editable allows you to edit existing data within the table and add new data to the table.

Vue Bootstrap Tables - API

This section present detailed information about Tables usage, properties and customization. Dive into API references to find see all available props and methods.


Imports

To start working with Basic Tables you need to import three components.
mdbTbl, mdbTblBody and mdbTblHead extends native HTML tags with MDB's styles and functions.


        import { mdbTbl, mdbTblHead, mdbTblBody } from 'mdbvue';
      

API Reference: Table component

All properties and options refered to mdbTbl component.

Properties

Name Type Default Description Example
striped Boolean false Adds zebra-striping to any table row. <mdb-tbl striped>
bordered Boolean false Adds border on all table's and cell's sides. <mdb-tbl bordered>
borderless Boolean false Disables border on all table's and cell's sides. <mdb-tbl borderless>
hover Boolean false Adds hover state on table rows (rows are marked on light-grey color). <mdb-tbl hover>
small Boolean false Cuts cell's padding by half. <mdb-tbl small>
reponsive Boolean false Makes table scrollable horizontally when screen width is smaller than table content (under 768px).
It make use of overflow-y: hidden which clips off content that goes beyon the bottom or top edge of the table.
<mdb-tbl responsive>
reponsiveSm Boolean false Makes table scrollable horizontally on under 576px wide screens. <mdb-tbl responsiveSm>
reponsiveMd Boolean false Makes table scrollable horizontally on under 768px wide screens. <mdb-tbl responsiveMd>
reponsiveLg Boolean false Makes table scrollable horizontally on under 992px wide screens. <mdb-tbl responsiveLg>
reponsiveXl Boolean false Makes table scrollable horizontally on under 1200px wide screens. <mdb-tbl responsiveXl>
scrollY Boolean false Allows table to be scrolled vertically if it's content is higher than 200px. Combine it with maxHeight to manipulate table's height. <mdb-tbl scrollY>
maxHeight String 200px Sets table's maxHeight. You can use px, vh or whatever fits to your needs. <mdb-tbl maxHeight="400px">
autoWidth Boolean false Automatically adjust columns width to the content. <mdb-tbl autoWidth>
fixed Boolean false Sets fixed columns width. <mdb-tbl fixed>

API Reference: mdbTblHead component

All properties and options refered to mdb-tbl-head component.

Name Type Default Description Example
color String Changes TableHead background color. Use MDB color classes <mdb-tbl-head color="primary-color">
textWhite Boolean false Sets TableHead's font color to white. <mdb-tbl-head textWhite>
columns Object[] Binds your data into the component. <mdb-tbl-head columns={this.state.columns}>
.th- class Sets the minimal width of the column (sm - 6rem, lg - 9rem). <mdb-tbl-head> <tr> <th class="th-sm"> Example <th> </tr> </mdb-tbl-head>

API Reference: TableBody component

All properties and options refered to mdb-tbl-body component.

Name Type Default Description Example
colSpan String 1 Spans table cell to the given number of columns. <mdb-tbl-body> <tr> <td colspan="2"> Example <td> </tr> </mdb-tbl-body>

API Reference: Additional Table elements

Name Type Default Description Example
<caption> Node A <caption> functions like a heading for a table. It helps users with screen readers to find a table and understand what it’s about and decide if they want to read it. <caption>Example caption</caption>