1. 程式人生 > >ant design of vue 使用記錄

ant design of vue 使用記錄

1、a-select 獲取選項文字並設定預設

設定labelInValue屬性,獲取到的value會成為{key:string, label:string};   

<a-select labelInValue placeholder="選擇區間" v-decorator="['numberSelect', { initialValue: { key: '0' } rules: [{ required: false }]}]">
    <a-select-option value="0">大於等於</a-select-option>
    <a-select-option value="1">大於</a-select-option>
    <a-select-option value="2">小於等於</a-select-option>
    <a-select-option value="3">小於</a-select-option>
</a-select>

這玩意兒有個問題就是如果設定預設選中,然後不出發change事件,則獲取不到label,不知道是我設定錯了還是咋滴。有誰知道,請指導一下啊!!!