解构赋值

33 阅读1分钟
const login = ({ canClose: canClose = true } = {}) =>{

}

竟然和

  const login = ({ canClose = true } = {}) => {
  
  }

是一样