layui/example/docs/zh-CN/hooks/useState.md
2021-12-08 09:32:19 +08:00

33 lines
484 B
Markdown

::: title 基础使用
:::
::: block 使 用 useState 创 建 Ref 响 应 变 量
:::
```vue
<script>
import { useState } from '@layui/hooks-vue'
export default {
setup() {
const { state, setState } = useState(0)
return {
state,
setState
}
},
}
</script>
```
::: title 使用备注
:::
::: table
| 备注 | 描述 | 类型 |
| ---- | -------------- | ----------- |
| state | 值本身 | -- |
| setState | 设置值 | -- |
:::