2021-06-09 00:22:05 +08:00
|
|
|
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';
|
2023-08-07 18:51:30 +08:00
|
|
|
import appDarkModeToggle from './src/AppDarkModeToggle.vue';
|
2020-12-07 21:17:24 +08:00
|
|
|
|
2020-12-10 23:58:11 +08:00
|
|
|
export { useAppProviderContext } from './src/useAppContext';
|
2021-06-09 00:22:05 +08:00
|
|
|
|
|
|
|
|
export const AppLogo = withInstall(appLogo);
|
|
|
|
|
export const AppProvider = withInstall(appProvider);
|
|
|
|
|
export const AppSearch = withInstall(appSearch);
|
|
|
|
|
export const AppLocalePicker = withInstall(appLocalePicker);
|
2023-08-07 18:51:30 +08:00
|
|
|
export const AppDarkModeToggle = withInstall(appDarkModeToggle);
|