You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<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>
Activity