如何将选定的值传递给vuejs函数?
v-model
我猜不会帮助。
我需要在item: items | orderBy sortKey reverse
where reverse
和sortKey
是动态值之后为过滤器设置
值。
html
<select class="sort-filter" v-on="change: sortBy(???)">
<option value="title asc">Title (A-Z)</option>
<option value="title desc">Title (Z-A)</option>
<option value="price asc">Price (Min. - Max.)</option>
<option value="price desc">Price (Max. - Min.)</option>
</select>
js
methods: {
sortBy: function (sortKey) {
console.log(sortKey)
}
}
如果要使用动态值循环并且不能使用v-model,则此方法应该有效