| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
 | | <template> |  |   <div class="page-view"> |  |     <el-pagination |  |       :current-page="pagerOptions.currPage" |  |       :page-sizes="pageSizes" |  |       :page-size="pagerOptions.pageSize" |  |       :layout="layout" |  |       background |  |       :total="pagerOptions.totalCount" |  |       v-on="$listeners" |  |     > |  |     </el-pagination> |  |   </div> |  | </template> |  |   |  | <script> |  | export default { |  |   name: "PagerView", |  |   props: { |  |     pageSizes: { |  |       type: Array, |  |       default: () => [5, 10, 20, 30, 40] |  |     }, |  |     layout: { |  |       type: String, |  |       default: "total, sizes, prev, pager, next, jumper" |  |     }, |  |     pagerOptions: { |  |       type: Object, |  |       default: () => { |  |         return { |  |           currPage: 1, |  |           pageSize: 10, |  |           totalCount: 0 |  |         } |  |       } |  |     } |  |   }, |  |   data() { |  |     return {} |  |   }, |  |   methods: {} |  | } |  | </script> |  |   |  | <!-- Add "scoped" attribute to limit CSS to this component only --> |  | <style lang="scss" scoped> |  | .page-view { |  |   margin-top: 10px; |  | } |  | </style> | 
 |