vue 2.0 全局引入eCharts以及按需引用eCharts
echarts 官方文档中的“在webpack中使用eCharts”链接 http://echarts.baidu.com/tutorial.html#在 webpack 中使用 ECharts在所需项目中安装完了之后:全局引用main.js 中配置import echarts from 'echarts'//引入echartsVue.prototype.$echarts = ...
·
echarts 官方文档中的“在webpack中使用eCharts” 链接 http://echarts.baidu.com/tutorial.html#在 webpack 中使用 ECharts
在所需项目中安装完了之后:
全局引用
main.js 中配置
import echarts from 'echarts' //引入echarts
Vue.prototype.$echarts = echarts //注册组件
eCharts.vue 中
<div id="myChart" :style="{width: '300px', height: '300px'}"></div>
JS
<script>
export default {
name: 'eCharts',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
},
mounted(){
this.drawLine();
},
methods: {
drawLine(){
// 基于准备好的dom,初始化echarts实例
var myChart = this.$echarts.init(document.getElementById('myChart'))
// 绘制图表
myChart.setOption({
title: { text: '在Vue中使用echarts' },
tooltip: {},
xAxis: {
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
});
}
}
}
</script>
按需引用
这时就不需要在main.js中进行配置了
eCharts.vue
html 不变
然后在 script 引入自己需要的模块,如下代码 (更多模块有: https://github.com/ecomfe/echarts/blob/master/index.js)
<script>
// 引入基本模板
// let echarts = require('echarts/lib/echarts')
var echarts = require('echarts')
// 引入柱状图组件
require('echarts/lib/chart/bar')
// 引入提示框和title组件
require('echarts/lib/component/tooltip')
require('echarts/lib/component/title')
export default {
name: 'eCharts',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
},
mounted(){
this.drawLine();
},
methods: {
drawLine(){
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('myChart'))
// 绘制图表
myChart.setOption({
title: { text: '在Vue中使用echarts' },
tooltip: {},
xAxis: {
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
});
}
}
}
</script>
注:这里用 requir 不用 import 引入是因为 import 需要详细的路径
转:https://www.cnblogs.com/xll-qg/p/8489480.html
更多推荐
已为社区贡献5条内容
所有评论(0)