美文网首页
在 Taro3 React中使用Echarts

在 Taro3 React中使用Echarts

作者: 燕自浩 | 来源:发表于2024-10-31 14:17 被阅读0次

习惯使用组件式的开发思想所以查了一些资料找到了echarts-taro3-react这个插件

  1. 安装依赖
npm install echarts
npm install taro-react-echarts

2.使用

import Echarts, { EChartOption } from 'taro-react-echarts';
import * as echarts from "echarts";

const option: EChartOption = {}

<Echarts
  echarts={echarts}
  option={option}
  isPage={false}
/>

注意:引入echarts时,不能import echarts from "echarts"; 否则会报Cannot read property 'init' of undefined的错误,正确引入方式是import * as echarts from "echarts".

相关文章

网友评论

      本文标题:在 Taro3 React中使用Echarts

      本文链接:https://www.haomeiwen.com/subject/heabdjtx.html