This feature is not available on mobile when
mobile-card
.
To show a data table is very simple, you just need a data
and a columns
prop.
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 2016-10-15 13:43:27 | Male |
2 | John | Jacobs | 2016-12-15 06:00:53 | Male |
3 | Tina | Gilbert | 2016-04-26 06:26:28 | Female |
4 | Clarence | Flores | 2016-04-10 10:28:46 | Male |
5 | Anne | Lee | 2016-12-06 14:38:38 | Female |
# Sandbox with custom template
To show a custom row template, you should not use the columns
prop, but add it within the scoped slot as a component.
Also you can add an empty
named slot to show when there's no data.
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 10/15/2016 | Male |
2 | John | Jacobs | 12/15/2016 | Male |
3 | Tina | Gilbert | 4/26/2016 | Female |
4 | Clarence | Flores | 4/10/2016 | Male |
5 | Anne | Lee | 12/6/2016 | Female |
# Selection
You can show a single selected row by passing the corresponding object to the selected
prop.
Additionally, adding the .sync
modifier will make it two-way binding — selected object will mutate if user clicks on row.
Use focusable
prop make table to be focused and navigable with a keyboard using arrow keys.
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 2016-10-15 13:43:27 | Male |
2 | John | Jacobs | 2016-12-15 06:00:53 | Male |
3 | Tina | Gilbert | 2016-04-26 06:26:28 | Female |
4 | Clarence | Flores | 2016-04-10 10:28:46 | Male |
5 | Anne | Lee | 2016-12-06 14:38:38 | Female |
# Checkable
You can add checkboxes to rows by using the checkable
prop.
To show which rows are checked, you have to pass the corresponding object array to the checked-rows
prop.
Adding the .sync
modifier will make it two-way binding — checked object array will mutate if user clicks on checkboxes.
A slot called bottom-left
is available whenever the table is checkable or paginated, you can add anything in there.
ID | First Name | Last Name | Date | Gender | |
---|---|---|---|---|---|
1 | Jesse | Simmons | 2016-10-15 13:43:27 | Male | |
2 | John | Jacobs | 2016-12-15 06:00:53 | Male | |
3 | Tina | Gilbert | 2016-04-26 06:26:28 | Female | |
4 | Clarence | Flores | 2016-04-10 10:28:46 | Male | |
5 | Anne | Lee | 2016-12-06 14:38:38 | Female |
# Searchable
You can add search filtering to rows by using the searchable
prop.
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 2016-10-15 13:43:27 | Male |
2 | John | Jacobs | 2016-12-15 06:00:53 | Male |
3 | Tina | Gilbert | 2016-04-26 06:26:28 | Female |
4 | Clarence | Flores | 2016-04-10 10:28:46 | Male |
5 | Anne | Lee | 2016-12-06 14:38:38 | Female |
# Pagination and sorting
To make a column sortable, add the sortable
prop on it and specify a field
name.
You can also use the default-sort
prop to determine the default sort column and order. The column must be sortable
to work.
The default-sort-direction
prop can be set to determine the default sort column direction on the first click.
A slot called bottom-left
is available whenever the table is checkable or paginated, you can add anything in there.
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
30 | Alan | Mendoza | 4/22/2016 | Male |
57 | Alan | Edwards | 3/22/2017 | Male |
20 | Albert | Mendoza | 8/8/2016 | Male |
45 | Andrea | Marshall | 9/4/2016 | Female |
8 | Andrew | Greene | 11/20/2016 | Male |
# Detailed rows
You can have detailed rows by adding a detail
named scoped slot and the detailed
prop.
You can also toggle row detail programmatically using toggleDetails
method and :show-detail-icon="false"
if you want to hide chevron icon.
# Custom Detailed rows
You can add anything you like into the detail
named scoped by providing the customDetailRow
prop to the table.
# Row status
Use the row-class
prop to return a class name. It's a function that receives row
and index
parameters.
Note that you have to style the class yourself.
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 2016-10-15 13:43:27 | Male |
2 | John | Jacobs | 2016-12-15 06:00:53 | Male |
3 | Tina | Gilbert | 2016-04-26 06:26:28 | Female |
4 | Clarence | Flores | 2016-04-10 10:28:46 | Male |
5 | Anne | Lee | 2016-12-06 14:38:38 | Female |
# Custom headers
By adding a scoped slot named header
in table component you can customize the headers.
Use the meta
prop on column to pass anything you may need.
Previous scoped slot named header
in table will be deprecated.
ID
|
First Name
|
Last Name
| Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 10/15/2016 | Male |
2 | John | Jacobs | 12/15/2016 | Male |
3 | Tina | Gilbert | 4/26/2016 | Female |
4 | Clarence | Flores | 4/10/2016 | Male |
5 | Anne | Lee | 12/6/2016 | Female |
# Subheadings
Use the subheading
prop on columns to add subheadings. This is particularly useful to display a summary when dealing with long tables.
By adding a scoped slot named subheading
in table component you can customize the subheadings.
ID | Contributor | Posts | Comments |
---|---|---|---|
Total: | 18 | 60 | |
1 | Jesse Simmons | 2 | 5 |
2 | John Jacobs | 11 | 42 |
3 | Tina Gilbert | 0 | 7 |
4 | Clarence Flores | 4 | 4 |
5 | Anne Lee | 1 | 2 |
# Toggle columns
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 2016-10-15 13:43:27 | Male |
2 | John | Jacobs | 2016-12-15 06:00:53 | Male |
3 | Tina | Gilbert | 2016-04-26 06:26:28 | Female |
4 | Clarence | Flores | 2016-04-10 10:28:46 | Male |
5 | Anne | Lee | 2016-12-06 14:38:38 | Female |
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 10/15/2016 | Male |
2 | John | Jacobs | 12/15/2016 | Male |
3 | Tina | Gilbert | 4/26/2016 | Female |
4 | Clarence | Flores | 4/10/2016 | Male |
5 | Anne | Lee | 12/6/2016 | Female |
Footer
|
# Async data
Use backend-sorting
and backend-pagination
props to let those tasks to the backend,
then manage it with page-change
and sort
events.
API from TMDb.
Title | Vote Average | Vote Count | Release Date | Overview |
---|---|---|---|---|
Inception | 8.3 | 24022 | 7/15/2010 | Cobb, a skilled thief who commits corporate espionage by infiltrating the subcon... |
Deadpool | 7.6 | 21464 | 2/9/2016 | Deadpool tells the origin story of former Special Forces operative turned mercen... |
The Avengers | 7.7 | 21165 | 4/25/2012 | When an unexpected enemy emerges and threatens global safety and security, Nick ... |
The Dark Knight | 8.4 | 20562 | 7/16/2008 | Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon an... |
Interstellar | 8.3 | 20365 | 11/5/2014 | Interstellar chronicles the adventures of a group of explorers who make use of a... |
Avatar | 7.4 | 19956 | 12/10/2009 | In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a ... |
Guardians of the Galaxy | 7.9 | 19407 | 7/30/2014 | Light years from Earth, 26 years after being abducted, Peter Quill finds himself... |
Fight Club | 8.4 | 17760 | 10/15/1999 | A ticking-time-bomb insomniac and a slippery soap salesman channel primal male a... |
Iron Man | 7.6 | 17103 | 4/30/2008 | After being held captive in an Afghan cave, billionaire engineer Tony Stark crea... |
Django Unchained | 8.1 | 17074 | 12/25/2012 | With the help of a German bounty hunter, a freed slave sets out to rescue his wi... |
Pulp Fiction | 8.5 | 17007 | 9/10/1994 | A burger-loving hit man, his philosophical partner, a drug-addled gangster's mol... |
Forrest Gump | 8.4 | 16392 | 7/6/1994 | A man with a low IQ has accomplished great things in his life and been present d... |
Avengers: Infinity War | 8.3 | 16182 | 4/25/2018 | As the Avengers and their allies have continued to protect the world from threat... |
The Lord of the Rings: The Fellowship of the Ring | 8.3 | 15734 | 12/18/2001 | Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bi... |
The Matrix | 8.1 | 15722 | 3/30/1999 | Set in the 22nd century, The Matrix tells the story of a computer hacker who joi... |
Titanic | 7.8 | 15565 | 11/18/1997 | 101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic,... |
The Hunger Games | 7.1 | 15510 | 3/12/2012 | Every year in the ruins of what was once North America, the nation of Panem forc... |
Mad Max: Fury Road | 7.5 | 15350 | 5/13/2015 | An apocalyptic story set in the furthest reaches of our planet, in a stark deser... |
Harry Potter and the Philosopher's Stone | 7.8 | 15314 | 11/16/2001 | Harry Potter has lived under the stairs at his aunt and uncle's house his whole ... |
Iron Man 3 | 6.9 | 15222 | 4/18/2013 | When Tony Stark's world is torn apart by a formidable terrorist called the Manda... |
# Draggable rows
Use draggable
prop to allow rows to be draggable. Manage dragging using dragstart
,
dragover
and drop
events
ID | First Name | Last Name | Date | Gender |
---|---|---|---|---|
1 | Jesse | Simmons | 2016-10-15 13:43:27 | Male |
2 | John | Jacobs | 2016-12-15 06:00:53 | Male |
3 | Tina | Gilbert | 2016-04-26 06:26:28 | Female |
4 | Clarence | Flores | 2016-04-10 10:28:46 | Male |
5 | Anne | Lee | 2016-12-06 14:38:38 | Female |
Name | Description | Type | Values | Default |
---|---|---|---|---|
data | Table data | Array<Object> | — | — |
columns | Table columns, you can also add renderHtml: true on each column object | Array<Object> (same as TableColumns props) | — | — |
default-sort | Sets the default sort column and order — e.g. ['first_name', 'desc'] | String, Array | — | order: default-sort-direction prop |
default-sort-direction | Sets the default sort column direction on the first click | String | asc , desc | asc |
sort-icon | Sets the header sorting icon | String | - | arrow-up |
sort-icon-size | Sets the size of the sorting icon | String | is-small , , is-medium , is-large | is-small |
bordered | Border to all cells | Boolean | — | false |
striped | Whether table is striped | Boolean | — | false |
narrowed | Makes the cells narrower | Boolean | — | false |
selected | Set which row is selected, use the .sync modifier to make it two-way binding | Object | — | — |
focusable | Table can be focused and user can navigate with keyboard arrows (require selected.sync ) and rows are highlighted when hovering | Boolean | — | false |
hoverable | Rows are highlighted when hovering | Boolean | — | false |
checkable | Rows can be checked (multiple), checked rows will have a .is-checked class if you want to style | Boolean | — | false |
checkbox-position | Position of the checkbox (if checkable is true) | String | left or right | left |
checked-rows | Set which rows are checked, use the .sync modifier to make it two-way binding | Array<Object> | — | — |
header-checkable | Show check/uncheck all checkbox in table header when checkable | Boolean | — | true |
mobile-cards | Rows appears as cards on mobile (collapse rows) | Boolean | — | true |
backend-sorting | Columns won't be sorted with Javascript, use with sort event to sort in your backend | Boolean | — | false |
backend-pagination | Rows won't be paginated with Javascript, use with page-change event to paginate in your backend | Boolean | — | false |
total | Total number of table data if backend-pagination is enabled | Number | — | 0 |
current-page | Current page of table data (if paginated ), use the .sync modifier to make it two-way binding | Number | — | 1 |
loading | Loading state | Boolean | — | false |
paginated | Adds pagination to the table | Boolean | — | false |
pagination-simple | Simple pagination (if paginated ) | Boolean | — | false |
pagination-size | Pagination size (if paginated ) | String | is-small , is-medium , is-large | — |
pagination-position | Pagination position (if paginated ) | String | bottom , top , both | bottom |
per-page | How many rows per page (if paginated ) | Number | — | 20 |
row-class | Add a class to row (<tr> element) based on the return | Function (row: Object, index: Number) | — | — |
detailed | Allow row details (check scoped slots documentation) | Boolean | — | false |
custom-detail-row | Allow a custom detail row | Boolean | — | false |
show-detail-icon | Allow chevron icon and column to be visible | Boolean | — | true |
opened-detailed | Allow pre-defined opened details. Ideal to open details via vue-router. (A unique key is required; check detail-key prop) | Array | — | [] |
has-detailed-visible | Controls the visibility of the trigger that toggles the detailed rows. | Function (row: Object) | — | true |
detail-key | Use a unique key of your data Object when use detailed or opened detailed. (id recommended) | String | — | — |
custom-is-checked | Custom method to verify if row is checked, works when is checkable . Useful for backend pagination | Function (a: Object, b: Object) | — | — |
is-row-checkable | Custom method to verify if a row is disabled, works when is checkable . | Function (row: Object) | — | true |
icon-pack | Icon pack to use | String | mdi , fa , fas , far , fad , fal | mdi |
mobile-sort-placeholder | Text when nothing is selected | String | — | — |
custom-row-key | Use a unique key of your data Object for each row. Useful if your data prop has dynamic indices. (id recommended) | String | - | - |
draggable | Allows rows to be draggable | Boolean | — | false |
aria-next-label | Accessibility label for the next page link (if paginated ) | String | — | — |
aria-previous-label | Accessibility label for the previous page link (if paginated ) | String | — | — |
aria-page-label | Accessibility label for the page link. If passed, this text will be prepended to the number of the page (if paginated ) | String | — | — |
aria-current-label | Accessibility label for the current page link. If passed, this text will be prepended to the current page (if paginated ) | String | — | — |
Name | Description | Type | Values | Default |
---|---|---|---|---|
label | Column header text, also used to identify column if custom-key prop is missing | String | — | — |
custom-key | Unique identifier, use when label is missing or there are duplicate label names | String, Number | — | this.label |
field | Property of the object the column is attributed, used for sorting | String | — | — |
meta | Meta prop to add anything, useful when creating custom headers | Any | — | — |
width | Column fixed width in pixels | Number | — | — |
numeric | Align the cell content to the right, sort icon on left | Boolean | — | false |
centered | Align the cell content to the center | Boolean | — | false |
sortable | Whether the column can be sorted | Boolean | — | false |
visible | Whether the column is visible | Boolean | — | true |
custom-sort | Custom sort method, works when is sortable | Function (a: Object, b: Object, isAsc: Boolean) | — | — |
searchable | Add a input below the header to filter data | Boolean | — | false |
subheading | Column subheading text | String, Number | — | — |
This page is open source. Noticed a typo or something's unclear?