当前位置:   article > 正文

vue list列表新增元素_vue list添加元素

vue list添加元素

调用push方法

  data: {
  newAddText:'',
	  lists:[
		  {id:1,title:'手机号码'},
		  {id:2,title:'qq号'},
		  {id:3,title:'姓名'},
	  ],
  },
  methods:{
	  addNewList:function(){
		  this.lists.push({
			  id:this.nextTodoId++,
			  title:this.newAddText
		  })
	  }
  }	
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号