返回顶部

vue 中的const {XXX } =this 的作用效果

样例1:

const { xxx } = this.state;
上面的写法是es6的写法,其实就相当于:

const xxx = this.state.xxx

样例2:

const {comment,index,deleteComment} = this 
上面的这句话是一个简写,最终的含义相当于
const comment = this.comment
const index = this.index
const deleteComment = this.deleteComment


 

posted @ 2020-08-11 11:28  fen斗  阅读(5570)  评论(1编辑  收藏  举报