barChart.vue 352 B

123456789101112131415161718192021
  1. <template>
  2. <view class="chart-wrap" :style="{height: barHeight}">
  3. <qiun-data-charts :type="barType" :chartData="data" :opts="optSet" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. chartData: {}
  11. }
  12. },
  13. props: ['data', 'optSet', 'barHeight', 'barType'],
  14. mounted() {},
  15. methods: {}
  16. }
  17. </script>
  18. <style>
  19. </style>