这段代码是什么意思
if (typeof window !== 'undefined' && window.localStorage) {
const storeData = window.localStorage.getItem('store');
if (storeData) applySnapshot(self, JSON.parse(storeData));
reaction(
() => getSnapshot(self),
json => {
window.localStorage.setItem('store', JSON.stringify(json));
}