Skip to content

set ​

类别
导出大小
127 B
最近修改
7 months ago

ref.value = x 的缩写

🌐 Shorthand for ref.value = x

用法 ​

🌐 Usage

ts
import { 
set
} from '@vueuse/core'
const
a
=
ref
(0)
set
(
a
, 1)
console
.
log
(
a
.
value
) // 1