1 个回答

你平时在 React 组件里引入本地图片是这么引入的么……

// 略...
import SVG_COPY from './assets/icons/svg/copy.svg';
// 略...
graph.addNode({
  shape: 'image',
  x: 320,
  y: 120,
  width: 94,
  height: 28,
  imageUrl: SVG_COPY
});
推荐问题