慕粉320551810
2020-04-17 11:41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TodoList</title>
<script src="./vue.js"></script>
</head>
<body>
<div id="root">
<div>
<input v-model="inputValue"/>
<button @click="handleSubmit">提交</button>
</div>
<ul>
<todo-item v-for="(item,index) of list"
:key= "index"
:content="item">
</todo-item>
</ul>
</div>
<script>
// 全局组件
Vue.component('todo-item',{
props:['content'],
template:'<li>{{content}}</li>'
})
// var TodoItem = {
// template: '<li>item</li>'
// }
new Vue({
el:"#root",
components:{
'todo-item':TodoItem
},
data:{
inputValue:'',
list: []
},
methods:{
handleSubmit: function(){
this.list.push(this.inputValue)
this.inputValue=''
}
}
})
</script>
</body>
</html>
调试下呗,chrome f12 打开控制台就知道问题了
我找到问题了。。components那里应该删掉 对不起 我不知道 咋删问题???
vue2.5入门
146820 学习 · 657 问题
相似问题