I have the following use case.
The root file in my web project is index.html
. I want to create an object that stores user info such that it can be accessed from any polymer web component in the project, without ever passing it to any web component explicitly. Can this be done? This is similar to the Singleton
methodology of many object oriented programming language.
Thank you.
The
iron-meta
element is designed for this, but the element basically just saves stuff into memory. Just look at what the element does:So I would just go ahead with the already suggested solution: