<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HELLO VUE</title>
<script src="https://cdn.jsdeliver.net/npm/vue"></script>
</head>
<body>
<div id="app">
{{message}}
</div>
<script>
var app = new Vue({
el: '#app',
data: {
message:'Hello Vue!'
}
})
</script>
</body>
</html>
1 回答
慕用5541223
TA贡献1条经验 获得超0个赞
错误提示是:
VM296:1 Uncaught ReferenceError: hello is not defined
at <anonymous>:1:13
(anonymous) @ VM296:1
添加回答
举报
0/150
提交
取消