commit | author | age | ||
ad2b70 | 1 | <template> |
L | 2 | <div> |
3 | <box5></box5> | |
4 | <box5></box5> | |
5 | <a-pagination showQuickJumper :default-current="current" :defaultPageSize="pageSize" :total="total" /> | |
6 | </div> | |
7 | </template> | |
8 | ||
9 | <script> | |
10 | import box5 from "./box5-article.vue" | |
11 | export default { | |
12 | components: { | |
13 | box5 | |
14 | }, | |
15 | data() { | |
16 | return { | |
17 | total: 500, | |
18 | pageSize: 20, | |
19 | current: 4, | |
20 | } | |
21 | }, | |
22 | ||
23 | } | |
24 | </script> | |
25 | ||
26 | <style> | |
27 | </style> |