index.ts 636 B

123456789101112131415
  1. import { withInstall } from '@/utils';
  2. import appLogo from './src/AppLogo.vue';
  3. import appProvider from './src/AppProvider.vue';
  4. import appSearch from './src/search/AppSearch.vue';
  5. import appLocalePicker from './src/AppLocalePicker.vue';
  6. import appDarkModeToggle from './src/AppDarkModeToggle.vue';
  7. export { useAppProviderContext } from './src/useAppContext';
  8. export const AppLogo = withInstall(appLogo);
  9. export const AppProvider = withInstall(appProvider);
  10. export const AppSearch = withInstall(appSearch);
  11. export const AppLocalePicker = withInstall(appLocalePicker);
  12. export const AppDarkModeToggle = withInstall(appDarkModeToggle);