Skip to content

no - 15 - useToggle #2931

@ricardoHer

Description

@ricardoHer
// your answers

<script setup lang='ts'>

import { ref, toRef } from 'vue';

/**
 * Implement a composable function that toggles the state
 * Make the function work correctly
*/
function useToggle(stateParam: boolean) {
  const state = ref(stateParam);

  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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions