Skip to content

Commit b0e24a9

Browse files
committed
feat: 新增组件扩展(柱图悬浮饼图)
1 parent e9f603c commit b0e24a9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/packages/barpie/index.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import 'echarts/lib/chart/bar'
2+
3+
import HocEcharts from '../../components/HocEcharts.vue'
4+
import Chart from './chart'
5+
6+
export default {
7+
name: 'VeBarpieChart',
8+
mixins: [HocEcharts],
9+
created () {
10+
this.chartHandler = new Chart().bar
11+
}
12+
}

0 commit comments

Comments
 (0)