FE-Driver / vue-beauty

Beautiful UI components build with vue and ant design
https://fe-driver.github.io/vue-beauty
MIT License
2.11k stars 249 forks source link

选择器optionOnChange设置后返回的是undefined #281

Open lysk opened 6 years ago

lysk commented 6 years ago

用 的文档的例子 加了个change方法 @change="select" select(item) { console.log(item); } 不知道是不是用的不对

yuu2lee4 commented 6 years ago

需要更详细的信息

lysk commented 6 years ago

我用的官方文档远程搜索的例子,修改 <v-select style="width: 200px" @change="select" optionOnChange search :loading="loading" :remote-method="remoteMethod" :data="remoteOption"></v-select>

select(item) {
    console.log(item);
}

打印出来的是undefined, 不加optionOnChange,打印出来的是value值 我想获取的是整个option

yuu2lee4 commented 6 years ago

option-on-change 这样呢

lysk commented 6 years ago

不行

yuu2lee4 commented 6 years ago

可以暂时把 this.remoteOption = []; 注释掉

lysk commented 6 years ago

可以了,多谢