请问有没有集成 echarts 的例子
Closed this issue · 2 comments
xiaoyucoding commented
使用 ECharts 的微信小程序版本 组件,始终会报找不到 echarts.setCanvasCreator 的警告。
xiaoyucoding commented
告警大致信息为:
ec-canvas/echarts.js
...setCanvasCreator not found...
在 webpack 中忽略三方库即可:
{
test: /\.js$/,
exclude: [/node_modules/, resolve('src/ec-canvas/echarts.js')],
use: loaders.script
}