/
yarovik1982
/
test
Обзор
Документация
Войти
/
yarovik1982
/
test
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/utils/useState.js
9 строк
262 B
acunamatata82
first_commit
04 май 2025, 13:30
04 май 2025, 13:30
a1120fd
Код
Авторство
О чём код?
import { ref } from "vue"; export const useState = (initialValue) => { const state = ref(initialValue); const setState = (newValue) => { state.value = typeof newValue === "function" ? newValue(state.value) : newValue; }; return [state, setState]; };