Loading

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>

报错

image

<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>

报错消失

image

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

posted @ 2025-03-27 11:12  一只大学生  阅读(9)  评论(0)    收藏  举报