Skip to content

It is a Vue port of the jQuery-based PivotTable.js

Notifications You must be signed in to change notification settings

brettcodling/vue3-pivottable

 
 

Repository files navigation

Vue3 Pivottable

It is a Vue port of the jQuery-based PivotTable.js

Installation

npm i https://github.com/brettcodling/vue3-pivottable

Usage

  • Vue Pivottable
<template>
  <vue-pivottable
    :data="[{color: 'blue', shape: 'circle'},{color: 'red', shape: 'triangle'}]"
    :rows="['color']"
    :cols="['shape']"
  >
  </vue-pivottable>
</template>

<script>
import { VuePivottableUi } from 'vue3-pivottable'
export default {
  components: {
    VuePivottableUi
  }
}
</script>
  • Vue Pivottable Ui
<template>
  <VuePivottableUi
    :data="[{color: 'blue', shape: 'circle'},{color: 'red', shape: 'triangle'}]"
    :rows="['color']"
    :cols="['shape']"
  />
</template>

License

MIT

About

It is a Vue port of the jQuery-based PivotTable.js

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 90.5%
  • CSS 9.5%