echarts4与echarts5在vue中的引用区别
2022-04-16 本文已影响0人
小小Bug你别跑
echarts4版本
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
echarts5版本
import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts
echarts4版本
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
echarts5版本
import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts