hello阿诚

有兴趣留言交流

filter的简洁写法

    new Vue({
             el:"#app",
             data(){
                 return{
                     arr:[1,2,3,4]
                 }
             },
             methods:{
                 compute(){
                     this.arr = this.arr.filter(_=>_!==3)
                 }
             }
         })
    

 

posted on 2021-04-10 15:13  陆秋明v  阅读(123)  评论(0编辑  收藏  举报

导航