猿问

在chrome中的js控制台更改app.message,由英文改为数字成功,但再想从数字改成英文一直报错?

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


慕用5541223
浏览 1999回答 1
1回答

慕用5541223

错误提示是:VM296:1 Uncaught ReferenceError: hello is not defined    at <anonymous>:1:13(anonymous) @ VM296:1
随时随地看视频慕课网APP

相关分类

Vue.js
我要回答