feat(vue): add ionic vue beta (#22062)

This commit is contained in:
Liam DeBeasi
2020-09-10 15:20:49 -04:00
committed by GitHub
parent 74af3cb50b
commit 5ffa65f84a
48 changed files with 3949 additions and 26 deletions

19
packages/vue/src/utils.ts Normal file
View File

@ -0,0 +1,19 @@
export const LIFECYCLE_WILL_ENTER = 'ionViewWillEnter';
export const LIFECYCLE_DID_ENTER = 'ionViewDidEnter';
export const LIFECYCLE_WILL_LEAVE = 'ionViewWillLeave';
export const LIFECYCLE_DID_LEAVE = 'ionViewDidLeave';
const ids: { [k: string]: number } = { main: 0 };
export const generateId = (type = 'main') => {
const id = (ids[type] ?? 0) + 1;
ids[type] = id;
return (id).toString();
};
// TODO types
export const fireLifecycle = (vueComponent: any, lifecycle: string) => {
if (vueComponent && vueComponent.methods && vueComponent.methods[lifecycle]) {
vueComponent.methods[lifecycle]();
}
}