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 - 鼠标坐标 #2817

Open
331886820 opened this issue Oct 8, 2024 · 0 comments
Open

25 - 鼠标坐标 #2817

331886820 opened this issue Oct 8, 2024 · 0 comments

Comments

@331886820
Copy link

// 你的答案
`<script setup lang="ts">
import { reactive, onMounted, onUnmounted, toRefs } from 'vue';

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

// Implement ...
function useMouse() {
  const point = reactive({
    x: 0,
    y: 0,
  });
  useEventListener(window, 'mousemove', (e) => {
    (point.x = e.clientX), (point.y = e.clientY);
  });
  return toRefs(point);
}
const { x, y } = useMouse();
</script>

<template>Mouse position is at: {{ x }}, {{ y }}</template>
`
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