初学者, 想知道错误出在哪里,找到的资料都介绍的
以下是我精简后的代码内容,错误提示在 main.js import那一行
错误提示为:
SyntaxError: Unexpected token '{'. import call expects exactly one argument
index.html
<!DOCTYPE html>
<html>
<head>
<title>LearnJavscript</title>
<meta charset="utf-8">
<style type = "text/css">
body{
background: #FFFFFF;
padding: 0px;
margin: 0px;
display: flex;
/* flex-direction: column-reverse; */
justify-content: center;
}
</style>
</head>
<body>
<script src="main.js"></script>
</body>
</html>
main.js
import {hello} from './lib.js';
hello();
lib.js
export function hello() {
console.log('hello');
}
慕田峪7331174
繁华开满天机
相关分类