Hi there community! I’m trying to store data into a dcc.store component from 3 different pages that my application has. I declare this dcc.store component in my main layout and then I’m trying to save all the values (not options) of my dropdowns there, so I can use them later as if it was a cache because always when I change of tab my dropdowns get reset and already used the “persistence=True” attribute and does’nt work. So my app crashes because it detects 3 Outputs pointing to the same dcc.store component.
What I want to avoid is have to create 3 different dropdowns for each tab and know if there is someway to store data into the same dcc.store component from different pages?