热门

最新

红包

立Flag

投票

同城

我的

发布
weixin_53231455
黛琳ghz 2022年度博客之星前端领域TOP 8
4 年前
trueweixin_53231455

日落🌅了

码友杂谈区
广州科技职业技术大学9座学生公寓
CSDN App 扫码分享
分享
评论
4
打赏
  • 复制链接
  • 举报
下一条:
p20 记事本-删除<!--列表区域--> <ul> <ol class="input_text color" v-for="(item,index) in arr"> {{index+1}}.{{item}} <button type="button" class="destroy" @click="remove(index)">×</button> <!--删除键--> </ol> </ul>methods:{ add:function(){ this.arr.push(this.inputVaule); }, /*remove:function(index){ this.arr.splice(index,1); },*/ remove:function(index){ console.log("删除"); console.log(index); this.arr.splice(index,1); }, clear:function(){ this.arr = []; } }
立即登录