layui/example/docs/zh-CN/hooks/useState.md
2021-12-06 09:35:18 +08:00

293 B

::: title 基础使用 :::

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

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

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