mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 00:26:20 +08:00
16 lines
637 B
TypeScript
16 lines
637 B
TypeScript
import { withInstall } from '/@/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';
|
|
|
|
export { useAppProviderContext } from './src/useAppContext';
|
|
|
|
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);
|