Vue select 点击 select 或事件

Vue select click on selector event

我用的是vue-select,需要触发选项打开事件,我试过:

<v-select :filterable="false" onclick="this.customMethod('meow')" /> 但这不支持 vue 方法。

如果您的方法 customMethod() 与您的行位于同一代码页(在 METHOD 部分),则在方法之前不使用 this. 调用它。而onclick是@click="..."v-on:click="..."

所以 @click="myMethod"

使用@change='meow()'

并在你的方法中加入喵喵

尝试这样的事情:

<v-select :filterable="false" @search:focus="customMethod('meow')" />

如果您想查看支持的所有事件,click here

例如,你想在元素被点击时派发事件,你必须使用@search:focus事件。

如果要更改元素上的调度事件,则必须使用 @input 事件。