uni-app 点击切换图标

前端代码:

 

生命周期

export default {
data() {
return {
showUpImg:true
};
},
methods:{
changeImg:function(){
this.showUpImg = !this.showUpImg
}
},

}

 

转载于:https://www.cnblogs.com/Yong0921/p/10672053.html

你可能感兴趣的:(uni-app 点击切换图标)