Vue - 获取元素调用函数wihout(事件)

时间:2018-04-06 13:48:17

标签: javascript html function events vue.js

我需要让元素在Vue中调用我的函数。但没有事件。我在v-for中调用了该方法。这是我的HTML代码:

<select id="sel_subUse" v-on:change="calculateARV(event, index)">
    <option v-for="subUse in filter(event, index)" value="subUse">{{ subUse }}</option>
</select>

我尝试使用event.target,但无济于事。我如何获得调用元素?

1 个答案:

答案 0 :(得分:1)

您需要使用$event,而不是event作为参数。那你就有了这个活动。

https://vuejs.org/v2/guide/events.html#Methods-in-Inline-Handlers