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

484 B

::: title 基础使用 :::

::: block 使 用 useState 创 建 Ref 响 应 变 量 :::

<script>
import { useState } from '@layui/hooks-vue'

export default {
  setup() {
    const { state, setState } = useState(0)
    return {
        state,
        setState
    }
  },
}
</script>

::: title 使用备注 :::

::: table

备注 描述 类型
state 值本身 --
setState 设置值 --
:::