Vue 使用Echarts
#
在vue中使用Echarts的步骤echarts
#
1. 安装npm i -S echarts vue-echarts// oryarn add echarts vue-echarts
#
2. 引入项目中import Vue from 'vue'import App from './App.vue'import router from './router'import store from './store'// 引入echartsimport "echarts/index.js"// 引入vue-echarts VEcharts是自定义的import VEcharts from 'vue-echarts'
// 注册组件 zgj-charts相当于是自定义的组件Vue.component("zgj-charts", VEcharts)
new Vue({ router, store, render: h => h(App)}).$mount('#app')
echarts
的页面使用#
3. 在想使用<template> <div class="echarts"> <!--引入组件并用 v-bind 绑定 options --> <zgj-charts :options="option"></zgj-charts> </div></template>
<script>export default { name: "Home", data() { return { option: { //在echarts官网引入想使用的图表配置··· }, }; },};</script><style >.echarts { width: 100%; height: 100vh;}</style>