我看到了下一个ES6代码:
import '../node_modules/spectre.css/dist/spectre.min.css';
import './styles.css';使用的意义是什么。。。...刚过
import '发布于 2017-04-19 21:44:29
点表示你从哪个目录开始。
./index.js在当前目录中查找index.js。../index.js在父目录中查找index.js。
https://stackoverflow.com/questions/43506549
复制相似问题