这是我的文件夹结构:
这些是我的文件:
/* index.html */
<body>
<h1>Modules</h1>
<script type="module" src="./index.js"></script>
</body>
// index.js
import fruits from "./fruits";
console.log(fruits);
// fruits.js
const arr = ["Mango", "Appple", "Banana", "Guava"];
export default arr;
对我来说一切看起来都很好,但我仍然收到错误:net::ERR_ABORTED 404 (Not Found)。
缥缈止盈
Qyouu
相关分类