vue項目中引用echarts的幾種方式

準備工做:

首先咱們初始化一個vue項目,執行vue init webpack echart,接着咱們進入初始化的項目下。安裝echarts,html

  1. npm install echarts -S //或
  2.  cnpm install echarts -S

安裝完成以後,咱們就能夠開始引入咱們須要的echarts了,接下來介紹幾種使用echarts的方式。vue

全局引用:

首先在main.js中引入echarts,將其綁定到vue原型上:webpack

  1.   import echarts from 'echarts'
  2. Vue.prototype.$echarts = echarts;

接着,咱們就能夠在任何一個組件中使用echarts了,接下來咱們在初始化項目中的helloWorld組件中使用echarts配置圖標,具體以下:web

<template>
    <div>
         <div style="width:500px;height:500px" ref="chart"></div>
    </div>
</template>
<script>
export default{
   data () {
  return {};
 },
 methods: {
  initCharts () {
  let myChart = this.$echarts.init(this.$refs.chart);
  console.log(this.$refs.chart)
  // 繪製圖表
  myChart.setOption({
  title: { text: '在Vue中使用echarts' },
  tooltip: {},
  xAxis: {
  data: ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"]
  },
  yAxis: {},
  series: [{
  name: '銷量',
  type: 'bar',
  data: [5, 20, 36, 10, 10, 20]
  }]
  });
  }
   },
   mounted () {
  this.initCharts();
 }
}
</script>npm

這樣下來,就能夠在項目的任何地方使用echarts了。echarts

局部使用:

固然,不少時候不必在全局引入ecahrts,那麼咱們只在單個組件內使用便可,代碼更加簡單:post

<template>
<div>
<div style="width:500px;height:500px" ref="chart"></div>
</div>
</template>
<script>
const echarts = require('echarts');
export default{
data () {
return {};
},
methods: {
initCharts () {
let myChart = echarts.init(this.$refs.chart);
// 繪製圖表
myChart.setOption({
title: { text: '在Vue中使用echarts' },
tooltip: {},
xAxis: {
data: ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"]
},
yAxis: {},
series: [{
name: '銷量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
});
}
},
mounted () {
this.initCharts();
}
}
</script>ui

能夠看到,咱們直接在組件內引入echarts,接下來跟全局引入的使用同樣。區別在於,這種方式若是你想在其餘組件內用echarts,則必須從新引入了。this

相關文章
相關標籤/搜索