SyntaxFix
Write A Post
Hire A Developer
Questions
Really elegant solution are decorators. You can use them to mark variables you want to store.
export class SomeComponent { @LocalStorage public variableToBeStored: string; }
Example how to achieve it is in this article (my blog)