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