import { ElPagination } from 'element-plus'; import type { Meta, StoryObj } from '@storybook/vue3'; const meta: Meta = { title: 'Data/Pagination 分页', component: ElPagination, args: { background: true, }, } export default meta; type Story = StoryObj; export const Overview: Story = { render: (args) => ({ components: { ElPagination, }, setup() { return { args }; }, template: ` 共 100 张专辑,仅显示前 500 页结果 `, }), };