Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

25 - 鼠标坐标 #2811

Open
wangqiJava opened this issue Sep 19, 2024 · 0 comments
Open

25 - 鼠标坐标 #2811

wangqiJava opened this issue Sep 19, 2024 · 0 comments

Comments

@wangqiJava
Copy link

// your answers
<script setup lang="ts">
import { onMounted, onUnmounted, ref } from 'vue';

// Implement ...
function useEventListener(target, event, callback) {
  onMounted(()=>target.addEventListener(event,callback))
  onUnmounted(()=>target.removeEventListener(event,callback))
}

// Implement ...
function useMouse() {
  let x = ref(0)
  let y = ref(0)
  useEventListener(window, "mousemove", (e: MouseEvent) => {
    x.value = e.clientX
    y.value = e.clientY
  })
  return {x,y}
}
const { x, y } = useMouse()
</script>

<template>Mouse position is at: {{ x }}, {{ y }}</template>
@wangqiJava wangqiJava changed the title no - 25 - 鼠标坐标 Sep 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant