click事件值传递方式:
<a href="###" v-on:click="jumpToPage(item.id)" :rel="item.id" class="">{{item.title}}</a>
想来想去,原来是可以直接传递的😂
var listVue = new Vue({
el: '#artical-list',
data: data,
methods:{
jumpToPage:function (id) {
alert(id);
}
}
});