Skip to content

useToggle medium #Composable Function

By webfansplz @webfansplz

Take the Challenge    简体中文

For this challenge, we'll start by creating a composable function. Lets start with useToggle 👇:

<script setup lang='ts'>

/**
 * Implement a composable function that toggles the state
 * Make the function work correctly
*/
function useToggle() {

}

const [state, toggle] = useToggle(false)

</script>

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

Share your Solutions Check out Solutions