Skip to content

15 - 切换器 #2067

Open
Open
@ehxie

Description

@ehxie

hook 的使用

<script setup lang='ts'>
import {ref} from 'vue'
/**
 * Implement a composable function that toggles the state
 * Make the function work correctly
*/
function useToggle(state: boolean) {
  const _state = ref(state)

  const toggle = () => {
    _state.value = !_state.value
  }

  return [_state, toggle]
}

const [state, toggle] = useToggle(false)

</script>

<template>
  <p>State: {{ state ? 'ON' : 'OFF' }}</p>
  <p @click="toggle">
    Toggle state
  </p>
</template>

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @ehxie

        Issue actions

          15 - 切换器 · Issue #2067 · webfansplz/vuejs-challenges