Hello,
i am introducing me to ionic 2 and i have some questions…
- What is the difference between @App, @Component, @Page?, well so much tutorials use these in the same way. I undestand that these are decorators but, when choose what? For example in one tutorial show this:
... @Page({ templateUrl: 'build/pages/profile/profile.html', }) export class ProfilePage ...
in another this:
... @Component({ templateUrl: 'build/pages/profile/profile.html', }) export class ProfilePage ...
and in another:
... @App({ templateUrl: 'build/pages/profile/profile.html', }) export class ProfilePage ...
then i dont know what is the best way or correct way.
- What is the difference between Provider and Service? About this i haven’t idea…
Thanks in advance and if there are documentation about this, please shere link Thanks.