UNPKG

vuestic-ui

Version:
19 lines (18 loc) 519 B
import { ComputedRef } from 'vue'; import { ButtonPropsTypes } from '../types'; type UseButtonAttributes = (props: ButtonPropsTypes) => ComputedRef<{ 'aria-disabled': boolean; disabled: boolean; type?: any; tabindex?: number; target?: string; href?: any; to?: string | Record<string, any>; replace?: boolean; append?: boolean; activeClass?: string; exact?: boolean; exactActiveClass?: string; }>; export declare const useButtonAttributes: UseButtonAttributes; export {};