vue中引入echarts和自定义的主题文件, 主题文件js报错ECharts is not Loaded
。页面上echarts的图表是正确显示的。
import echarts from 'echarts/lib/echarts'
import 'echarts/lib/chart/bar'
import 'echarts/lib/component/tooltip'
import 'echarts/lib/component/title'
import '@/assets/echarts/mytheme' // 主题文件
export default {
name: 'user-chart',
data () {
return {
}
},
mounted () {
this.initChart()
},
methods: {
initChart () {
this.userChart = echarts.init(this.$refs['userChart'], 'mytheme')
this.userChart.setOption({
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
})
}
}
}
找到了一种方法,把主题的json下载下来,放到js文件中,比如theme.js
然后在vue文件中