npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tvaliasek/vue-datatable

v2.4.10

Published

Very naive and simple data table for Bootstrap 5 and Vue 3. For Vue 2 use version 1.x., now without the dependency on bootstrap-vue-next.

Downloads

1,100

Readme

Simple Bootstrap 5 and Vue 3 data table

Very naive and simple data table for Bootstrap 5 and Vue 3. For Vue 2 use version 1.x., now without the dependency on bootstrap-vue-next.

Install

pnpm add @tvaliasek/vue-datatable

# peer dependencies
pnpm add bootstrap
import { createApp } from 'vue'
import { DataTablePlugin } from '@tvaliasek/vue-datatable'

import 'bootstrap/dist/css/bootstrap.css'
import '@tvaliasek/vue-datatable/dist/data-table.css'

const app = createApp(App)
app.use(DataTablePlugin)

app.mount('#app')

Usage

Define columns (header prop) and provide dataset as array of objects. See the example on ./src/App.vue

DataTable component props

| property | type | required | default | usage | | -------- | ---- | -------- | ------- |------ | | lang | String | no | undefined / 'en_US' | ISO language code of translation, as defined in src/Langs | | i18n | Object | no | {} | Override for language strings, object { key: string } | | autoUpdate | Boolean | no | false | Toggle auto update feature | | loading | Boolean | no | false | Toggle loading state | | header | Array | yes | undefined | Definition of columns (described below) | | data | Array | no | [] | Array of row data objects | | actions | Boolean | no | true | Toggle display of actions column | | buttons | Array | no | [] | Definition of available row actions/buttons | | disableButtons | Boolean | no | false | Toggle disabled state of all actions/buttons | | paging | Boolean | no | false | Toggle pagination | | pagingOptions | Array | no | [ 15, 30, 60, 100 ] | Rows per page variants | | responsive | Boolean or string | no | null | responsive css class suffix | | actionsOnLeft | Boolean | no | false | set to true for render actions cell in first column | | selectableRows | Boolean | no | false | Set to true to enable selectability of table rows. Do not forget to set v-model and "selectableRowsTrackBy" property. | | selectableRowsCheckboxes | Boolean | no | false | Set to true to perform selection of rows trough checkboxes displayed in first cell of rows. Please note that using this feature automatically disable selection of rows trough clicking on any data cell. | | selectableRowsTrackBy | String | no | id | Unique data property of flattened row which should be used as tracking id for row selection. | | selectableRowsClass | String | no | vue-datatable-selected-row | CSS class added to selected rows (on TR tag). | | exportable | Boolean | no | false | Show export button | | stateSaving | Boolean | no | false | Enable internal state saving feature. State is saved in sessionStorage under specified key | | stateSavingUniqueKey | String | no | vueDataTable | a unique key under which the internal state will be stored | | tableUniqueKey | String | no | generated from _uid | custom unique key for table | | remoteDataMode | Boolean | no | false | set to true to enable remote data mode | | remoteDataTotalRows | Number | no | 0 | required for pagination to work when remote data mode is enabled, total number of rows in remote dataset | | rowClass | String, Function | no | undefined | css class to apply on all rows, or callback (row: Record<string, any) => string or null | | paginationFirstNumber | Boolean | no | false | set to true to display first page symbol | | paginationLastNumber | Boolean | no | false | set to true to display last page symbol | | pageOptionsVariant | String | no | 'primary' | Bootstrap variant for page options buttons | | autoUpdateButtonVariant | String | no | 'primary' | Bootstrap variant for auto update button | | autoUpdateButtonRunningVariant | String | no | 'secondary' | Bootstrap variant for auto update button when running | | exportButtonVariant | String | no | 'primary' | Bootstrap variant for export button |

DataTable slots

The DataTable component provides several slots to customize its layout and content. Some slots are scoped, meaning they provide additional props for advanced customization.

| Slot Name | Scoped? | Description | Slot Props (if scoped) | |----------------|---------|--------------------------------------------------------------------------------------------|----------------------------------------------------------| | left | No | Content for the left side above the table (header row, left column). | — | | right | No | Content for the right side above the table (header row, right column). | — | | beforeTable | No | Content rendered before the table element. | — | | afterTable | No | Content rendered after the table element. | — | | firstRow | No | Content rendered as the first row in the table body (tbody). | — | | lastRow | No | Content rendered as the last row in the table body (tbody). | — | | bottomLeft | No | Content rendered below the table, aligned to the bottom left (before pagination controls). | — | | bottomRight | No | Content rendered below the table, aligned to the bottom right (after pagination controls). | — | | paging | Yes | Customizes the page size dropdown (shown if paging is enabled). | pagingOptions, currentPageLimit, onSetCurrentPageLimit | | exportButton | Yes | Custom export button (shown if exportable is enabled). | onExport |

DataTable column definition

Columns are defined as Array of objects

| property | type | required | default | usage | | -------- | ---- | -------- | ------- |------ | | text | String | yes | undefined | Text displayed as caption of column | | data | String | yes | undefined | Name of property in row data object, for nested objects it should be in dot notation ex: 'person.name' | | sortable | Boolean | no | false | Toggles sorting on column, data is by default sorted naturally | | filterable | Boolean | no | false | Toggles filtering on column | | format | Function | no | undefined | Custom cell data format function. (value, row) => value | | sortFn | Function | no | undefined | Custom sort function sort(a, b) | | filterFn | Function | no | undefined | Custom filter function filter(cellValue, filterValue, rowData) | | customComponent | Function | no | undefined | Function which returns custom component instance or name, component will receive whole data row in prop named row and data key from header definition in prop named dataIndex | | cellStyle | String | no | undefined | CSS style rules to apply on column data cells | | cellClassnames | Array | no | [] | Array of css class names to apply on column data cells | | aggregate | Function | no | undefined | Array reducer function for aggregation of filtered and flattened data. Whole flattened row is obtained as reducer currentValue. See Array.reduce | | aggregateInitialValue | Any | no | undefined | Value to use as aggregation (reducer) initial value. | | aggregateText | String | no | undefined | Text to place before aggregation result. | | clickToSelect | Boolean | no | true | Set to false to disable click to select row function for this column |

DataTable actions definition

Actions are defined as Array of objects, each action generates button and emits two events, common action event and event named as is defined in definition

| property | type | required | default | usage | | -------- | ---- | -------- | ------- |------ | | text | String | yes | undefined | Text displayed as caption of button | | event | String | no | undefined | Name of emitted event | | variant | String | no | undefined | Bootstrap variant of button ex: 'primary', 'danger' | | confirm | Boolean | no | false | Enable confirmation when button is clicked | | confirmText | String | no | undefined | Text to show on confirmation prompt | | customComponent | Function | no | undefined | Function which returns custom component instance or name, component will receive whole data row in prop named row | | visibleIf | Function | no | undefined | Function which returns boolean to indicate if button should be visible, function will receive whole data row as first parameter | | customTextComponent | String or function | no | undefined | Custom component for default slot of button, can be combined with text | | customTextComponentProps| Record<string, any> | no | undefined | Object with props which will be passed to customTextComponent | | href | String | no | undefined | pass string if the button should be a common link | | hrefCallback | Function | no | same as for href, but you can provide a factory function for link, function will receive whole processed row as a first parameter |

Events

| event | data | usage | | ----- | ---- | ----- | | refresh | undefined | Emitted on update tick when auto update feature is enabled | | action | { event: nameOfEvent, row: object } | Emitted on click to any action button | | as defined in action | { ...row } | Emitted on click to any action button | | export | [{ cellDataProperty: cellContent }] | Emitted on click to export button | | remote-data-refresh | { filter: {key: filterQuery}[], sortBy: string, sortDirection: string, currentPage: number, currentPageLimit: number } | Emitted on any display settings change during remote data mode, automatically debounced |

Run demo

# clone repo using your favourite git client
gh repo clone tvaliasek/vue-datatable ./vue-datatable
cd vue-datatable
pnpm install
pnpm dev