vant-weapp组件得外部样式类引用说明

时间选择插件datetime-picker为例

<van-datetime-picker
  type="datetime"
  value="currentDate"
  :show-toolbar="false"
  :visible-item-count='3'
  active-class="healthSet-date"
/>

这里得active-class="healthSet-date"就是其选中项样式类

.healthSet-date{
   color:#B49851;
   background:#f00;
 }

注意他的外部样式不要嵌套,否则不会生效

发布了108 篇原创文章 · 获赞 29 · 访问量 11万+

猜你喜欢

转载自blog.csdn.net/Gabriel_wei/article/details/96111102