@jdlinker/ui
Version:
jdLinker UI库,基于ant-design-vue封装
15 lines (13 loc) • 693 B
text/typescript
import { withInstall } from '@jdlinker/utils';
import appLogo from './src/AppLogo.vue';
import appProvider from './src/AppProvider.vue';
import appSearch from './src/search/AppSearch.vue';
// import appLocalePicker from './src/AppLocalePicker.vue';
import appDarkModeToggle from './src/AppDarkModeToggle.vue';
import homePageLogo from './src/HomePageLogo.vue';
export const AppLogo = withInstall(appLogo);
export const AppProvider = withInstall(appProvider);
export const AppSearch = withInstall(appSearch);
// export const AppLocalePicker = withInstall(appLocalePicker);
export const AppDarkModeToggle = withInstall(appDarkModeToggle);
export const HomePageLogo = withInstall(homePageLogo);