📌  相关文章
📜  导入 img 在另一个文件中做出反应 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:19.449000             🧑  作者: Mango

代码示例1
//import imgs in a different js file
import lostImage from './assets/img/illustrations/lost.svg';
export { lostImage }; 

//import in the component to use it
import {lostImage} from './images.js'