forked from opentiny/tiny-vue
22 lines
427 B
Vue
22 lines
427 B
Vue
<template>
|
|
<div>
|
|
<tiny-chart-liquidfill :data="chartData" :settings="chartSettings"></tiny-chart-liquidfill>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import { ChartLiquidfill as TinyChartLiquidfill } from '@opentiny/vue'
|
|
|
|
const chartData = ref({
|
|
columns: ['city', 'percent'],
|
|
rows: [
|
|
{
|
|
city: '上海',
|
|
percent: 0.6
|
|
}
|
|
]
|
|
})
|
|
const chartSettings = ref({})
|
|
</script>
|