You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<scriptsetuplang="ts">
import {ref,computed} from 'vue';
/**
* Implement the composable function
* Make sure the function works correctly
*/
function useLocalStorage(key: string, initialValue: any) {conststate=ref(initialValue);conststoredValue=localStorage.getItem(key);if(storedValue!==null){state.value=JSON.parse(storedValue);} else {localStorage.setItem(key,JSON.stringify(initialValue));}
const storageComputed = computed({get(){
return state.value;},set(newValue){state.value=newValue;localStorage.setItem(key,JSON.stringify(newValue));},
});returnstorageComputed;}constcounter=useLocalStorage('counter',0);// We can get localStorage by triggering the getter:console.log(counter.value);// And we can also set localStorage by triggering the setter:constupdate=()=>counter.value++;</script><template><p>Counter: {{ counter }}</p><button @click="update">Update</button></template>
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: