All Projects → cretueusebiu → vue-datatables

cretueusebiu / vue-datatables

Licence: MIT license
No description or website provided.

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to vue-datatables

Vueye Table
A data table created using Vue.js
Stars: ✭ 64 (+190.91%)
Mutual labels:  datatables, vue-components
vue-data-table
Smart table using vue.js - sorting columns, filter by string, child rows, custom columns, custom row data
Stars: ✭ 15 (-31.82%)
Mutual labels:  datatables, vue-components
cuida
A design system built by Sysvale, using storybook and Vue components
Stars: ✭ 16 (-27.27%)
Mutual labels:  vue-components
vueface
UI Components for Vue
Stars: ✭ 74 (+236.36%)
Mutual labels:  vue-components
vue-component-creater-ui
拖拽式Vue组件代码生成编辑器(VCC)
Stars: ✭ 383 (+1640.91%)
Mutual labels:  vue-components
vue-link
One component to link them all 🔗
Stars: ✭ 65 (+195.45%)
Mutual labels:  vue-components
trending-twitter
Simple dashboard for getting currently trending hashtags and topics on Twitter
Stars: ✭ 23 (+4.55%)
Mutual labels:  datatables
laravel-vue-component
A Blade directive to ease up Vue workflow for Laravel projects
Stars: ✭ 19 (-13.64%)
Mutual labels:  vue-components
nuxewind
Free Vue JS (Nuxt 2) Tailwind Admin Dashboard Template
Stars: ✭ 62 (+181.82%)
Mutual labels:  vue-components
hawkvuemdframework
Vue material Framework. Lightweight components for vuejs 2.x.
Stars: ✭ 15 (-31.82%)
Mutual labels:  vue-components
v-markdown-editor
Vue.js Markdown Editor component
Stars: ✭ 101 (+359.09%)
Mutual labels:  vue-components
vue-today
📅 Today is cute
Stars: ✭ 37 (+68.18%)
Mutual labels:  vue-components
laravel-datatables-editor
Laravel DataTables Editor Integration.
Stars: ✭ 105 (+377.27%)
Mutual labels:  datatables
datatable-examples
Using DataTables plug-in for jQuery
Stars: ✭ 29 (+31.82%)
Mutual labels:  datatables
fect
Minimalist UI components built on Vue-next
Stars: ✭ 352 (+1500%)
Mutual labels:  vue-components
logi-filter-builder
advanced SQL filter builder. Demo:
Stars: ✭ 23 (+4.55%)
Mutual labels:  datatables
vue-authoring-template
Vue project template for authoring component and their use case
Stars: ✭ 14 (-36.36%)
Mutual labels:  vue-components
vue-date-range-picker
A vue component using Bootstrap 4 styles for date range selection
Stars: ✭ 30 (+36.36%)
Mutual labels:  vue-components
v-intl
Add i18n to your awesome Vue 3 app 🔉
Stars: ✭ 13 (-40.91%)
Mutual labels:  vue-components
DataTablesBundle
Symfony bundle for DataTables plugin.
Stars: ✭ 13 (-40.91%)
Mutual labels:  datatables

vue-datatables

A Vue 2.0 component for DataTables [WIP].

Installation

npm install --save vue-datatables jquery datatables.net-bs datatables.net-responsive-bs

For Webpack, add the following loader:

{
  test: /datatables\.net.*/,
  loader: 'imports?define=>false'
}

Usage

import Vue from 'vue'
import $ from 'jquery'
require('datatables.net-bs')(window, $)
// import VueResource from 'vue-resource'
import VueDataTables from 'vue-datatables'

import App from './App.vue'

// Vue.use(VueResource)
Vue.use(VueDataTables)

new Vue({
  el: '#app',
  render: h => h(App)
})

See demo/src/App.vue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].