import type { InjectionKey, ComputedRef } from 'vue' export interface ElPaginationContext { currentPage?: ComputedRef pageCount?: ComputedRef disabled?: ComputedRef changeEvent?: (val: number) => void handleSizeChange?: (val: number) => void } export const elPaginationKey: InjectionKey = Symbol('elPaginationKey')