mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
feat(vue): add ionic vue beta (#22062)
This commit is contained in:
69
packages/vue/src/index.ts
Normal file
69
packages/vue/src/index.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { addIcons } from 'ionicons';
|
||||
import { arrowBackSharp, caretBackSharp, chevronBack, chevronForward, close, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
|
||||
|
||||
export * from './proxies';
|
||||
export { IonicVue } from './ionic-vue';
|
||||
|
||||
export { IonBackButton } from './components/IonBackButton';
|
||||
export { IonPage } from './components/IonPage';
|
||||
export { IonRouterOutlet } from './components/IonRouterOutlet';
|
||||
export { IonTabButton } from './components/IonTabButton';
|
||||
export { IonTabs } from './components/IonTabs';
|
||||
export { IonTabBar } from './components/IonTabBar';
|
||||
|
||||
export {
|
||||
// Overlay Controllers
|
||||
alertController,
|
||||
actionSheetController,
|
||||
menuController,
|
||||
modalController,
|
||||
loadingController,
|
||||
pickerController,
|
||||
popoverController,
|
||||
toastController,
|
||||
|
||||
// Security
|
||||
IonicSafeString,
|
||||
|
||||
// Platform
|
||||
isPlatform, Platforms, getPlatforms,
|
||||
|
||||
// Gesture
|
||||
Gesture,
|
||||
GestureConfig,
|
||||
GestureDetail,
|
||||
createGesture,
|
||||
|
||||
// Animations
|
||||
Animation,
|
||||
AnimationBuilder,
|
||||
AnimationCallbackOptions,
|
||||
AnimationDirection,
|
||||
AnimationFill,
|
||||
AnimationKeyFrames,
|
||||
AnimationLifecycle,
|
||||
createAnimation,
|
||||
iosTransitionAnimation,
|
||||
mdTransitionAnimation,
|
||||
getTimeGivenProgression,
|
||||
|
||||
// Hardware Back Button
|
||||
BackButtonEvent
|
||||
} from '@ionic/core';
|
||||
|
||||
// Icons that are used by internal components
|
||||
addIcons({
|
||||
'arrow-back-sharp': arrowBackSharp,
|
||||
'caret-back-sharp': caretBackSharp,
|
||||
'chevron-back': chevronBack,
|
||||
'chevron-forward': chevronForward,
|
||||
'close': close,
|
||||
'close-circle': closeCircle,
|
||||
'close-sharp': closeSharp,
|
||||
'menu-outline': menuOutline,
|
||||
'menu-sharp': menuSharp,
|
||||
'reorder-two-sharp': reorderTwoSharp,
|
||||
'reorder-three-outline': reorderThreeOutline,
|
||||
'search-outline': searchOutline,
|
||||
'search-sharp': searchSharp,
|
||||
});
|
Reference in New Issue
Block a user