vue-vben-admin PaginationProps缺少AntdV自带的position参数

j7dteeu8  于 2023-02-04  发布在  其他
关注(0)|答案(1)|浏览(304)

Table组件使用分页条时,无法设置分页条的对齐方式。

type position = 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';

export interface PaginationProps {
/**

  • Pagination align
  • @default ['bottomRight']
  • @type position[]
    */
    position?: position[];

相关问题