van-picker 自定义label

    <van-popup
      v-model="companyShow"
      position="bottom"
      :style="{ height: '60%' }"
    >
      <van-picker
        title="职务"
        show-toolbar
        value-key="dictValue"
        :columns="positions"
        @confirm="companyOnConfirm"
        @cancel="companyShow = false"
      >
        <template #option="option">
          {{ option.dictLabel }}
        </template>
      </van-picker>
    </van-popup>

 

posted @ 2023-03-02 14:13  ThisCall  阅读(199)  评论(0编辑  收藏  举报