uni-app 点击切换图标

前端代码:

<template>
<view>
<image src="../../static/pari/buxihuan.png" v-show="showUpImg" @click="changeImg"></image>
<image src="../../static/pari/dianshubuz.png" v-show="!showUpImg" @click="changeImg"></image>
</view>
</template>

 

生命周期

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

}

 

uni-app 点击切换图标

上一篇:谷歌的Android Q到底有哪些新特性及变更?


下一篇:Verify the Developer App certificate for your account is trusted on your device.