yozora-vue
Version:
Build beautiful, scalable UIs effortlessly with Yozora, a Vue 3 and Tailwind CSS component library focused on flexibility, responsiveness, and ease of customization. Perfect for developers seeking fast, maintainable, and utility-first design integration.
20 lines (19 loc) • 708 B
TypeScript
interface PaginationProps {
pagination: Array<{
label: string;
url: string;
}>;
currentPage: number | string;
}
declare const _default: import("vue").DefineComponent<PaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
changePage: (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<PaginationProps> & Readonly<{
onChangePage?: ((...args: any[]) => any) | undefined;
}>, {
pagination: Array<{
label: string;
url: string;
}>;
currentPage: number | string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLElement>;
export default _default;