1 2 3 4 5 6
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';
7
import appDarkModeToggle from './src/AppDarkModeToggle.vue';
8
9
export { useAppProviderContext } from './src/useAppContext';
10 11 12 13 14
export const AppLogo = withInstall(appLogo); export const AppProvider = withInstall(appProvider); export const AppSearch = withInstall(appSearch); export const AppLocalePicker = withInstall(appLocalePicker);
15
export const AppDarkModeToggle = withInstall(appDarkModeToggle);