Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

18 - 实现本地存储 #2952

Closed
lisen6 opened this issue Mar 13, 2025 · 0 comments
Closed

18 - 实现本地存储 #2952

lisen6 opened this issue Mar 13, 2025 · 0 comments

Comments

@lisen6
Copy link

lisen6 commented Mar 13, 2025

<script setup lang="ts">
import { ref, computed } from 'vue';

/**
 * Implement the composable function
 * Make sure the function works correctly
 */
function useLocalStorage(key: string, initialValue: any) {
  const state = ref(initialValue);

  const storedValue = 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));
    },
  });

  return storageComputed;
}

const counter = 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:

const update = () => counter.value++;
</script>

<template>
  <p>Counter: {{ counter }}</p>
  <button @click="update">Update</button>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant