如果是100%的话我想变成这个颜色,其他情况就是默认的颜色,这个需求该怎么做?
5***@qq.com
- 发布:2021-06-11 16:15
- 更新:2022-05-14 19:40
- 阅读:3929
在 ide自带的例子程序hello uniapp中的 实例-扩展组件-list列表中有这个例子
自定义两侧插槽
通过class 改变颜色!!!
<uni-list-item>
<template v-slot:header>
<view class="slot-box">
<image class="slot-image" src="/static/logo.png" mode="widthFix"></image>
</view>
</template>
<template v-slot:body>
<text class="slot-box slot-text">自定义两侧插槽</text>
</template>
<template v-slot:footer>
<image class="slot-image" src="/static/logo.png" mode="widthFix"></image>
</template>
</uni-list-item>