var vm = new Vue({
el: "-sharpapp",
data: {
nowpage:0,
typenum:1
},
methods:{
test: function () {
$.ajax({
url: "/xxx/xxx",
data: {
PageNum: this.nowpage,
PageSize: this.typenum
},
type: "post",
dataType: "json",
success: function (data) {
...
//pagination
$.jqPaginator("-sharppagination", {
...
);
}
});
}
}
});
vm.test();
vue,