UNPKG

@arco-vue-pro-components/pro-components

Version:
10 lines (9 loc) 226 B
import { ref } from "vue"; function useState(defaultValue) { const value = ref(defaultValue); const setValue = (newValue) => { value.value = newValue; }; return [value, setValue]; } export { useState as default };