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

30 lines
527 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: {
maxSize: '80%',
minSize: '10%',
data: [
{ value: 100, name: 'Show' },
{ value: 75, name: 'Click' },
{ value: 50, name: 'Visit' },
{ value: 25, name: 'Order' }
]
}
}
}
}
</script>