React + 导入模块的一个错误
导入模块的时候出现这个错误:
Attempted import error: 'd3' does not contain a default export (imported as 'd3').
把导入方式
import d3 from 'd3'
改成
import * as d3 from 'd3'
导入模块的时候出现这个错误:
Attempted import error: 'd3' does not contain a default export (imported as 'd3').
把导入方式
import d3 from 'd3'
改成
import * as d3 from 'd3'