@heartlee/element-components
Version:
a component library for Vue 3 base on element-plus. Forked from element-pro-components. 根据业务需求自用,如需使用,请移步官方仓库使用
34 lines (33 loc) • 1.24 kB
TypeScript
import ProBreadcrumb from './Breadcrumb/index';
import ProCheckbox from './Checkbox/index';
import ProCheckboxButton from './CheckboxButton/index';
import ProColumnSetting from './ColumnSetting/index';
import ProCrud from './Crud/index';
import ProForm from './Form/index';
import ProLayout from './Layout/index';
import ProLink from './Link/index';
import ProMenu from './Menu/index';
import ProRadio from './Radio/index';
import ProRadioButton from './RadioButton/index';
import ProSelect from './Select/index';
import ProTable from './Table/index';
import ProTabs from './Tabs/index';
declare module 'vue' {
interface GlobalComponents {
ProBreadcrumb: typeof ProBreadcrumb;
ProCheckbox: typeof ProCheckbox;
ProCheckboxButton: typeof ProCheckboxButton;
ProColumnSetting: typeof ProColumnSetting;
ProCrud: typeof ProCrud;
ProForm: typeof ProForm;
ProLayout: typeof ProLayout;
ProLink: typeof ProLink;
ProMenu: typeof ProMenu;
ProRadio: typeof ProRadio;
ProRadioButton: typeof ProRadioButton;
ProSelect: typeof ProSelect;
ProTable: typeof ProTable;
ProTabs: typeof ProTabs;
}
}
export {};