js导包
现象
不加<script type="module">
代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script type="module">
import {abc} from "./test.js"
console.log(abc)
</script>
</body>
</html>
报错

加<script type="module">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script type="module">
import {abc} from "./test.js"
console.log(abc)
</script>
</body>
</html>
报错消失

博客:https://blog.csdn.net/chenyu1105811473/article/details/107642435

浙公网安备 33010602011771号