Skip to content

15 - useToggle #2861

Open
Open
@geek4ctrl

Description

@geek4ctrl
// your answers
<script setup lang='ts'> import { ref } from 'vue'; /** * Implement a composable function that toggles the state * Make the function work correctly */ function useToggle(toggleValue: boolean) { const initialToggleValue = ref(toggleValue); function toggleValueFunction() { initialToggleValue.value = !initialToggleValue.value } return [initialToggleValue, toggleValueFunction]; } const [state, toggle] = useToggle(false) </script>

State: {{ state ? 'ON' : 'OFF' }}

Toggle state

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions