방법: 1. "npm install echarts vue-echarts" 문을 사용하여 vue-echarts를 설치합니다. 2. "main.js" 파일에 vue-echarts 모듈을 도입합니다. 3. 필요한 인터페이스에 echarts 코드를 추가합니다. 필요에 따라 그게 다입니다.
이 튜토리얼의 운영 환경: Windows 7 시스템, vue 버전 2.9.6, DELL G3 컴퓨터.
vuejs는 echarts를 로드합니다
npm install echarts vue-echarts
main.js
import ECharts from 'vue-echarts' import 'echarts/lib/chart/line' Vue.component('chart', ECharts)
HelloWorld.vue
<template> <p class="hello"> <chart ref="chart1" :options="orgOptions" :auto-resize="true"></chart> </p> </template> <script> export default { name: 'HelloWorld', data () { return { orgOptions: {}, } }, mounted() { this.orgOptions = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: [{ data: [820, 932, 901, 934, 1290, 1330, 1320], type: 'line', smooth: true }] } } } </script>
여기요 끝났습니다. 패키징해봤는데 오류는 보고되지 않았습니다~
관련 추천: "vue.js Tutorial"
위 내용은 vuejs에서 echart를 로드하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!