Rap 原分销系统代码Web
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

19 wiersze
422B

  1. <!--分页-->
  2. <template>
  3. <el-pagination
  4. :page-size.sync="page.size"
  5. :total="page.total"
  6. :current-page.sync="page.page"
  7. style="margin-top: 8px;"
  8. layout="total, prev, pager, next, sizes"
  9. @size-change="crud.sizeChangeHandler($event)"
  10. @current-change="crud.pageChangeHandler"
  11. />
  12. </template>
  13. <script>
  14. import { pagination } from '@crud/crud'
  15. export default {
  16. mixins: [pagination()]
  17. }
  18. </script>