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

View File

@ -0,0 +1,7 @@
const ids: { [k: string]: number } = { main: 0 };
export const generateId = (type = 'main') => {
const id = (ids[type] ?? 0) + 1;
ids[type] = id;
return (id).toString();
};