控制台报错,ReferenceError: vue is not defined,请老师帮忙看看。
来源:2-2 hello world
慕九州8294477
2018-07-21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>
<script src='./vue.js'></script>
</head>
<body>
<div id="app">{{content}}</div>
<script>
var app = new vue ({
el: "#app",
data: {
content: 'hello'
}
})
</script>
</body>
</html>
写回答
1回答
-
你的 new vue的vue应该是Vue的 V是大写的
10
相似问题