提交 | 用户 | age
55e9d9 1 import { withInstall } from '/@/utils';
b5046f 2 import type { ExtractPropTypes } from 'vue';
55e9d9 3 import button from './src/BasicButton.vue';
V 4 import popConfirmButton from './src/PopConfirmButton.vue';
b5046f 5 import { buttonProps } from './src/props';
73c8e0 6
55e9d9 7 export const Button = withInstall(button);
V 8 export const PopConfirmButton = withInstall(popConfirmButton);
b5046f 9 export declare type ButtonProps = Partial<ExtractPropTypes<typeof buttonProps>>;