Cannot read property ‘getAttribute‘ of null“ vue导入echarts报错
程序员文章站
2022-06-07 13:13:14
...
<templete>
<div>
<!-- 为 ECharts 准备一个具备大小(宽高)的 DOM -->
<div
id="main"
style="width: 600px;height:400px;"
></div>
</div>
</templete>
<script>
import echarts from 'echarts'
export default {
mounted() {
// console.log(document.getElementById('main'))
this.drawChart()
},
methods: {
drawChart() {
this.$nextTick(function () {
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'))
// 绘制图表
myChart.setOption({
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
})
console.log(document.getElementById('main'))
})
}
}
}
</script>
上一篇: vue 启动报错:`TypeError: Cannot read property 'range' of null`
下一篇: easyui datagrid Uncaught TypeError: Cannot read property ‘width‘ of null
推荐阅读
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object
-
Vue Element UI 之 date-picker 禁用时间和报错:TypeError: Cannot read property 'getHours' of undefined
-
js报错 Cannot read property 'getAttribute' of null
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object
-
js报错 Cannot read property 'getAttribute' of null
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#
-
el-tooltip组件中content使用Vue-i18n报错TypeError: Cannot read property ‘$t‘ of null
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object
-
Vue引入echarts报错Error in mounted hook: “TypeError: Cannot read property ‘getAttribute‘ of null“
-
vue3 使用axios 会报错“Uncaught TypeError: Cannot read property ‘get‘ of undefined”