Client-storage
You can use the browser's local storage to persist state between sessions. This allows user preferences, authentication cookies, other bits of information to be stored on the client and accessed from different browser tabs.
A client-side storage var looks and acts like a normal str
var, except the
default value is either rx.Cookie
or rx.LocalStorage
depending on where the
value should be stored. The key name will be based on the var name, but this
can be overridden by passing name="my_custom_name"
as a keyword argument.
For more information see Browser Storage.
Try entering some values in the text boxes below and then load the page in a separate tab or check the storage section of browser devtools to see the values saved in the browser.
my_cookie
my_local_storage
custom_cookie