最佳答案
I try to create a Dart single page application.
I have created a first custom element (custom-application
) which contains the whole application.
It has a container in it which is used to render views. And a side nav which will contain user informations and be updated when the user is log in.
I want to share informations between views.
How can I define a global variable in custom-application
and be able to share it with the other views ?
For example, when you start the app, you are not authenticated. When you call /login (login-view
) you'll have a login form. I want, when you log in the application, the custom-application
element stores the user informations loaded by the nested view login-view
and update the side nav.
Is it possible to do it ?