vuestic-ui
Version:
Vue 3 UI Framework
19 lines (18 loc) • 519 B
TypeScript
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 {};