Blame view

src/components/Button/index.ts 250 Bytes
1
2
3
import { withInstall } from '/@/utils';
import button from './src/BasicButton.vue';
import popConfirmButton from './src/PopConfirmButton.vue';
vben authored
4
5
6
export const Button = withInstall(button);
export const PopConfirmButton = withInstall(popConfirmButton);