啥意思?想动态更改图标的颜色么?
color搞成动态的就行呀
<template>
<view>
<uni-icons type="top" size="14" :color="color" />
<button @click="test">测试</button>
</view>
</template>
<script>
export default {
data() {
return {
color:'#999',
flag:true
}
},
methods: {
test(){
if(this.flag){
this.flag=!this.flag
this.color='#000'
}else{
this.flag=!this.flag
this.color='#999'
}
}
}
}
</script>
1 个回复
套马杆的套子 - 没有解决不了的问题,只有解决不完的问题
啥意思?想动态更改图标的颜色么?
color搞成动态的就行呀