By webfansplz @webfansplz
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>