慕前端7272018
2019-07-22 17:23
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>vue入门</title>
<script src="./vue.js"></script>
</head>
<body>
<div id=root>
<div>
<input v-modle="inputValue"/>
<button @click="handleClick">提交</button>
</div>
<ul>
<li v-for= "(item, index) of list" :key="index">
{{item}}
</li>
</ul>
</div>
<script>
new Vue({
el:"#root",
data: {
inputValue: '',
list: []
},
methods: {
handleClick: function() {
this.list.push(this.inputValue)
this.inputValue = ''
}
}
})
</script>
一大堆错误?
modle ==> model
<
div
id
="
root"
>这样会比较规范一点
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>vue入门</title> <script src="vue.js"></script> </head> <body> <div id=root> <div> <input v-model="inputValue"/> <button @click="handleClick">提交</button> </div> <ul> <li v-for="(item, index) of list" :key="index"> {{item}} </li> </ul> </div> <script> new Vue({ el: "#root", data: { inputValue: '', list: [] }, methods: { handleClick: function () { this.list.push(this.inputValue); this.inputValue = '' } } }) </script> </body> </html>
vue2.5入门
146742 学习 · 657 问题
相似问题