Skip to content

Instantly share code, notes, and snippets.

@santiagoaloi
Created November 17, 2023 22:54
Show Gist options
  • Save santiagoaloi/f50f720544a5e3ede7b862301f4280b0 to your computer and use it in GitHub Desktop.
Save santiagoaloi/f50f720544a5e3ede7b862301f4280b0 to your computer and use it in GitHub Desktop.
export function useShake() {
const shake = refAutoReset('', 1000)
function startShaking() {
shake.value = true
}
const isShaking = computed(() => {
return shake.value && 'shake'
})
return { startShaking, isShaking }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment