UNPKG

various-ui

Version:

This is a test version of the Vue 3 component library

20 lines (18 loc) 577 B
const UiPaginationPropsOption = { skip: { type: Number, default: 2 }, //? 点击...时分页切换的页码数 count: { type: Number, required: true }, //? 数据的总量 items: { type: Boolean, default: true }, //? 是否显示统计信息 limit: { type: Number, default: 10 }, //? 每页的数据量 modelValue: { type: Number, required: true } //? 当前的页码 }; const UiPaginationEmits = { "update:modelValue": (key) => true, "change": (key) => true }; export { UiPaginationEmits, UiPaginationPropsOption }; //# sourceMappingURL=index.mjs.map