JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 57
  • Score
    100M100P100Q64369F
  • License MIT

A very simple table component.

Package Exports

  • vue-data-tablee

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-data-tablee) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Vue Data Tablee

JavaScript Style Guide

Yeap, another Vue table component. This one is based on vue-good-table, a simple and pretty table component.

Install

Install from npm.

npm install vue-data-tablee

With Vue.use function declare vue-data-tablee components.

// Using ES2015 modules syntax
import Vue from 'vue'
import DataTablee from 'vue-data-tablee'

// Using CommonJS modules
var Vue = require('vue')
var DataTablee = require('vue-data-tablee')

Vue.use(DataTablee)

You can also import just components you need, without installing globally.

<script>
import { DataTable } from 'vue-data-tablee'

export default {
  components: { DataTable }
}
</script>

License

Released under MIT license.