123456789101112131415161718192021 |
- <template>
- <view class="chart-wrap" :style="{height: barHeight}">
- <qiun-data-charts :type="barType" :chartData="data" :opts="optSet" />
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- chartData: {}
- }
- },
- props: ['data', 'optSet', 'barHeight', 'barType'],
- mounted() {},
- methods: {}
- }
- </script>
- <style>
- </style>
|