js点击图片放大,再次点击原图


          
        

data() {
  return{
     isChoose:false,
  }
}
 methods: {
    imgScc(index) {
      this.isChoose = this.isChoose === index ? false : index
    },
}


你可能感兴趣的:(js点击图片放大,再次点击原图)