inleft
2022-01-15 41b36f013d4103ffc59fd58feb6b6177ee5b04f7
commit | author | age
ad2b70 1 <template>
41b36f 2     <div >
ad2b70 3         <box5></box5>
L 4         <box5></box5>
d629d9 5         <box5></box5>
L 6         <box5></box5>
7         <a-pagination :showQuickJumper="true" :size="size" :default-current="current" :defaultPageSize="pageSize"
8             :total="total" />
ad2b70 9     </div>
d629d9 10
ad2b70 11 </template>
L 12
13 <script>
41b36f 14     import box5 from "../mini/box5-article.vue"
ad2b70 15     export default {
L 16         components: {
17             box5
18         },
19         data() {
20             return {
d629d9 21                 data: [],
L 22                 loading: false,
23                 busy: false,
24                 size: "small",
ad2b70 25                 total: 500,
L 26                 pageSize: 20,
27                 current: 4,
28             }
d629d9 29         }
ad2b70 30     }
d629d9 31     
ad2b70 32 </script>