@arco-design/web-vue
Version:
Arco Design Vue 2.0: A Vue.js 3 UI Library
15 lines (14 loc) • 361 B
TypeScript
import { Size, Status, BorderShape } from '../_utils/constant';
import { ButtonTypes } from './constants';
export interface ButtonProps {
type?: ButtonTypes;
shape?: BorderShape;
status?: Status;
size?: Size;
long?: boolean;
loading?: boolean;
disabled?: boolean;
htmlType?: string;
autofocus?: boolean;
href?: string;
}