我有以下文件夹结构。我试图批量导出组件,但它对我不起作用,但我没有发现任何错误。
/一般
index.js
export * from './Card'
/普通/卡
index.js
export Gold from './Gold';
export Silver from './Silver';
如果直接导入一般的index.js中的组件(如
),它就有效export Gold from './Card/Gold';
export Silver from './Card/Silver';