qq_我是深海闺蜜是暖光_0
2018-09-14 17:46
<div class="root">
<input v-model="inputValue" />
<button @click="handle">提交</button>
<input type="button" @click="del" value="删除" />
<ul>
<li v-for="(item,index) of list" :key = item>{{item}}</li>
</ul>
</div>
<script>
new Vue({
el:'.root',
data:{
inputValue:'',
list:[]
},
methods:{
handle:function(){
this.list.push(this.inputValue);
this.inputValue = '';
},
del:function(){
this.list.pop(this.inputValue);
}
}
})
</script>
methods: { handleSubmit: function() { if(this.inputValue != ""){ this.list.push(this.inputValue); } } }
如何让列表为空不显示列表,如果没有判断,会有一个空列表
在this.list.push(this.inputValue);加一个if(this.inputValue!="")判断就行了
vue2.5入门
146742 学习 · 657 问题
相似问题