componentInstall.ts 287 B

1234567891011
  1. import type { DefineComponent } from 'vue'
  2. const component = Object.create(null)
  3. /* eslint-disable */
  4. import Echart from './echartCanvas/index'
  5. component.install = function (vue: DefineComponent) {
  6. // ECharts 图表渲染
  7. vue.component('echart', Echart)
  8. }
  9. export default component