UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

10 lines (9 loc) 298 B
/** * title: "翻页简化" * description: "通过设置type为simple,简化翻页。" */ import React from 'react'; import { Pagination } from '@alicloud/console-components'; export default function App() { return (React.createElement(Pagination, { defaultCurrent: 2, type: "simple" })); }