UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

13 lines (12 loc) 415 B
/** * title: "翻页+跳转" * description: "设置showJump为true,显示跳转页码输入框。" */ import React from 'react'; import { Pagination } from '@alicloud/console-components'; var handlePageSizeChange = function (size) { console.log(size); }; export default function App() { return (React.createElement(Pagination, { defaultCurrent: 2, onChange: handlePageSizeChange, showJump: true })); }