Open lysk opened 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
option-on-change 这样呢
不行
可以暂时把 this.remoteOption = []; 注释掉
可以了,多谢
用 的文档的例子 加了个change方法 @change="select" select(item) { console.log(item); } 不知道是不是用的不对