vue-table-component
A simple Vue component to display tables. Support sortable columns, pagination and custom css styles.
Example with 2 Table components, first one with default styles and paginator, and second one with custom css styles and paginator in 'select' mode.
Usage
<TableView
:headers="[
{"label":"First Name", "field":"first_name", "sortable":true, "type":"String"},
{"label":"Email", "field":"email", "sortable":true, "type":"String"},
{"label":"Age", "field":"age", "sortable":true, "type":"Number"}
]",
:rows="[
{"first_name":"Isidor" ,"email":"[email protected]", "age":20},
{"first_name":"Max", "email":"[email protected]", "age":32},
{"first_name":"Brigham", "email":"[email protected]", "age":54},
{"first_name":"Jakob", "email":"[email protected]", "age":37},
{"first_name":"Brannon" ,"email":"[email protected]", "age":18}
]",
:sort="{
field: 'first_name',
order: 'asc'
}",
:pagination="{
itemsPerPage: 10,
align: 'center',
visualStyle: 'select'
}",
css-style="my-css-style"
>
<template v-slot:items="{ row }">
<td>{{ row.first_name }}</td>
<td>{{ row.email }}</td>
<td>{{ row.age }}</td>
</template>
<template v-slot:no-data>
<span>No data</span>
</template>
</TableView>
Props
headers
: (required) array with table columns definition (See columns definition)rows
: (required) array with data to fill the tablesort
: object with sorting configuration- field: initial sort field
- order: [asc/desc] sort order
pagination
: object with pagination configuration- enabled: [true/false]
- itemsPerPage: number of rows in each page
- align: [left/center/right] position of the paginator (Default 'right')
- visualStyle: [select/button] paginator style (Default 'button')
css-style
: css class that will be applied to the component instead of default styles. Custom styles must be defined in this way:
<style lang="scss">
.my-css-style{
.ozn-table {
...
}
.ozn-paginator {
...
}
}
</style>
Columns definition
Each column must be defined with 4 parameters:
- label: text that will be shown in the column header
- field: data field related to the column
- sortable: [true/false]
- type: [String/Number]