atui
Version:
components built with Vue.js
34 lines (26 loc) • 364 B
Markdown
order: 0
title:
zh-CN: 迷你版
en-US: Type
## zh-CN
## en-US
````jsx
<pagination :curr-page="currPage" mini :total="total"></pagination>
````
````vue-script
new Vue({
el: 'body',
components: {
pagination: atui.Pagination
},
data: function() {
return {
totalPage: 10,
currPage: 2,
total: 273
}
}
})
````