vue-peity-binaryify
v0.5.0
Published
A Vue version of an excellent peity library for beautiful mini <svg> graphs.
Downloads
1
Readme
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