tiny-vue/examples/sites/demos/pc/app/chart/funnel/demo2.vue

29 lines
506 B
Vue

<template>
<div>
<tiny-funnel :options="options"></tiny-funnel>
</div>
</template>
<script lang="jsx">
import { ChartFunnel } from '@opentiny/vue'
export default {
components: {
TinyFunnel: ChartFunnel
},
data() {
return {
options: {
sort: 'ascending',
data: [
{ value: 100, name: 'Show' },
{ value: 75, name: 'Click' },
{ value: 50, name: 'Visit' },
{ value: 25, name: 'Order' }
]
}
}
}
}
</script>