You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(typeofdefine==='function'&&define.amd){// AMD. Register as an anonymous module.define(['exports','echarts'],factory);}elseif(typeofexports==='object'&&typeofexports.nodeName!=='string'){// CommonJSfactory(exports,require('echarts'));}else{// Browser globalsfactory({},root.echarts);}
root.echarts 改为 Window.echarts 可解决
The text was updated successfully, but these errors were encountered:
分析原因是因为 以UMD引入 customed.js 时 找不到this 对象
root.echarts 改为 Window.echarts 可解决
The text was updated successfully, but these errors were encountered: