vue-peity

0.5.0 • Public • Published

Peity

A Vue version of an excellent peity library for beautiful mini graphs.

Usage

<template>
  <peity :type="'pie'" :options="{ 'fill': ['red', '#eeeeee'], width: 50, height:50,  'innerRadius': 10, 'radius': 40 }" :data="pieData"></peity>
</template>
 
<script>
import Peity from 'vue-peity'
 
export default {
  components: {
    Peity
  },
 
  computed: {
    pieData () {
      return this.data.toString()
    }
  },
 
  data () {
    return {
      data: [1, 2, 3, 2, 2]
    }
  },
 
  created () {
    setInterval(() => {
      // https://vuejs.org/guide/list.html#Mutation-Methods
      this.data.unshift(this.data.pop())
    }, 377)
  }
}
</script>

Badges


fundon.me  ·  GitHub @fundon  ·  Twitter @_fundon

Readme

Keywords

Package Sidebar

Install

npm i vue-peity

Weekly Downloads

511

Version

0.5.0

License

MIT

Last publish

Collaborators

  • fundon