<view class="wd-cell__title">
<!--title BEGIN-->
<view v-if="title" :class="customTitleClass">{{ title }}</view>
<slot v-else name="title"></slot>
<!--title END-->
<!--label BEGIN-->
<view v-if="label" :class="`wd-cell__label ${customLabelClass}`">{{ label }}</view>
<slot v-else name="label" />
<!--label END-->
</view>
这是文档说明,https://wot-design-uni.cn/component/cell.html#cell-%E5%A4%96%E9%83%A8%E6%A0%B7%E5%BC%8F%E7%B1%BB指出是title 使用 slot 时的自定义样式
源码中是