How to use vue-tables-2 - 2 common examples

To help you get started, we’ve selected a few vue-tables-2 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github zxc23 / dcss-scoreboard / vue-prototype / src / main.js View on Github external
import Vue from 'vue'
import axios from 'axios'
import VueAxios from 'vue-axios'
import App from './App'
import * as filters from './filters/'
import VueTables from 'vue-tables-2'

Vue.use(VueAxios, axios)
Vue.use(VueTables.client)

// register global utility filters.
Object.keys(filters).forEach(key => {
  Vue.filter(key, filters[key])
})

/* eslint-disable no-new */
new Vue({
  el: '#app',
  template: '',
  components: { App }
})
github reconness / reconness / src / ReconNess.Web / ClientApp / src / components / target / TargetSubdomainsTag.vue View on Github external
filterGrid() {
                Event.$emit('vue-tables.filter::search', this.filter);
            },
            filterOnlyScopeGrid() {

vue-tables-2

Vue.js 2 grid components

GPL-3.0
Latest version published 2 years ago

Package Health Score

53 / 100
Full package analysis

Popular vue-tables-2 functions