|
38 | 38 | * Client & Server mode
|
39 | 39 | * Highly customizable
|
40 | 40 |
|
| 41 | +Table of Contents |
| 42 | +================= |
| 43 | + |
| 44 | + * [1. vue-bootstrap4-table](#1-vue-bootstrap4-table) |
| 45 | + * [2. Features](#2-features) |
| 46 | + * [3. Installation](#3-installation) |
| 47 | + * [3.1. Install via npm or yarn](#31-install-via-npm-or-yarn) |
| 48 | + * [3.1.1. Dependencies](#311-dependencies) |
| 49 | + * [3.2. Install via CDN](#32-install-via-cdn) |
| 50 | + * [4. Basic Usage](#4-basic-usage) |
| 51 | + * [5. Columns](#5-columns) |
| 52 | + * [5.1. Basic structure](#51-basic-structure) |
| 53 | + * [5.2. Attributes details](#52-attributes-details) |
| 54 | + * [5.3. Column slot](#53-column-slot) |
| 55 | + * [5.3.1. Example](#531-example) |
| 56 | + * [5.3.2. Note](#532-note) |
| 57 | + * [5.3.3. props](#533-props) |
| 58 | + * [6. Rows](#6-rows) |
| 59 | + * [6.1. Basic structure](#61-basic-structure) |
| 60 | + * [6.2. Row Slot](#62-row-slot) |
| 61 | + * [6.2.1. Example](#621-example) |
| 62 | + * [6.2.2. Note](#622-note) |
| 63 | + * [6.2.3. props](#623-props) |
| 64 | + * [7. Sorting](#7-sorting) |
| 65 | + * [7.1. Example](#71-example) |
| 66 | + * [7.2. Attributes details](#72-attributes-details) |
| 67 | + * [7.3. Single column sorting](#73-single-column-sorting) |
| 68 | + * [7.4. Multi column sorting](#74-multi-column-sorting) |
| 69 | + * [7.4.1. Example](#741-example) |
| 70 | + * [7.5. Slot](#75-slot) |
| 71 | + * [7.5.1. Sort Icon](#751-sort-icon) |
| 72 | + * [7.5.1.1. Example](#7511-example) |
| 73 | + * [8. Filtering](#8-filtering) |
| 74 | + * [8.1. Simple Filter](#81-simple-filter) |
| 75 | + * [8.1.1. Example](#811-example) |
| 76 | + * [8.1.2. Attributes details](#812-attributes-details) |
| 77 | + * [8.2. Multi-Select Filter](#82-multi-select-filter) |
| 78 | + * [8.2.1. Example](#821-example) |
| 79 | + * [8.2.2. Attribute details](#822-attribute-details) |
| 80 | + * [9. Global search](#9-global-search) |
| 81 | + * [9.1. Example](#91-example) |
| 82 | + * [9.2. Attributes details](#92-attributes-details) |
| 83 | + * [10. Pagination & Info](#10-pagination--info) |
| 84 | + * [10.1. Example](#101-example) |
| 85 | + * [10.2. Attributes details](#102-attributes-details) |
| 86 | + * [10.3. Slot](#103-slot) |
| 87 | + * [10.3.1. Previous & Next button](#1031-previous--next-button) |
| 88 | + * [10.3.2. Pagination info](#1032-pagination-info) |
| 89 | + * [10.3.2.1. props](#10321-props) |
| 90 | + * [10.3.3. Selected rows info](#1033-selected-rows-info) |
| 91 | + * [10.3.3.1. props](#10331-props) |
| 92 | + * [11. Refresh and Reset button](#11-refresh-and-reset-button) |
| 93 | + * [11.1. Refresh Button](#111-refresh-button) |
| 94 | + * [11.1.1. Example](#1111-example) |
| 95 | + * [11.2. Reset button](#112-reset-button) |
| 96 | + * [11.3. Slots](#113-slots) |
| 97 | + * [11.3.1. Button text and icons](#1131-button-text-and-icons) |
| 98 | + * [11.3.1.1. Example](#11311-example) |
| 99 | + * [12. Custom action buttons](#12-custom-action-buttons) |
| 100 | + * [12.1. Example](#121-example) |
| 101 | + * [12.2. Attributes details](#122-attributes-details) |
| 102 | + * [13. Custom classes](#13-custom-classes) |
| 103 | + * [13.1. Example](#131-example) |
| 104 | + * [14. vbt-classes](#14-vbt-classes) |
| 105 | + * [14.1. vbt-row-selected](#141-vbt-row-selected) |
| 106 | + * [15. Config](#15-config) |
| 107 | + * [15.1. Example](#151-example) |
| 108 | + * [15.2. Attributes details](#152-attributes-details) |
| 109 | + * [16. Server mode](#16-server-mode) |
| 110 | + * [16.1. Example](#161-example) |
| 111 | + * [16.1.1. Step 1](#1611-step-1) |
| 112 | + * [16.1.2. Step 2](#1612-step-2) |
| 113 | + * [16.1.3. Step 3](#1613-step-3) |
| 114 | + * [16.1.4. Step 4](#1614-step-4) |
| 115 | + * [16.1.5. Note](#1615-note) |
| 116 | + * [17. Events](#17-events) |
| 117 | + * [17.1. on-select-row](#171-on-select-row) |
| 118 | + * [17.1.1. Payload (Object)](#1711-payload-object) |
| 119 | + * [17.2. on-all-select-rows](#172-on-all-select-rows) |
| 120 | + * [17.2.1. Payload (Object)](#1721-payload-object) |
| 121 | + * [17.3. on-unselect-row](#173-on-unselect-row) |
| 122 | + * [17.3.1. Payload (Object)](#1731-payload-object) |
| 123 | + * [17.4. on-all-unselect-rows](#174-on-all-unselect-rows) |
| 124 | + * [17.4.1. Payload (Object)](#1741-payload-object) |
| 125 | + * [17.5. refresh-data](#175-refresh-data) |
| 126 | + * [18. Build Setup](#18-build-setup) |
| 127 | + |
41 | 128 | # 3. Installation
|
42 | 129 | ## 3.1. Install via npm or yarn
|
43 | 130 |
|
|
0 commit comments