<mx-pagination
total="2000"
step="3"
page="2"
class="fl"/>
<mx-pagination
total="2000"
step="5"
simplify="true"
page="15"/>
<mx-pagination
total="2000"
step="5"
mini="true"
page="10"/>
<mx-pagination
total="2000"
step="5"
page="10"
mx-change="show()"/>
let Magix = require('magix');
module.exports = Magix.View.extend({
tmpl: '@index.html',
render() {
let me = this;
me.updater.digest();
},
'show<change>' (e) {
console.log(e.page, e.size);
}
});