Test.vue 288 B

123456789101112131415
  1. <template>
  2. <h2>我是Test组件</h2>
  3. <h2>当前点击时鼠标的坐标为:x:{{point.x}},y:{{point.y}}</h2>
  4. </template>
  5. <script>
  6. import usePoint from '../hooks/usePoint'
  7. export default {
  8. name:'Test',
  9. setup(){
  10. const point = usePoint()
  11. return {point}
  12. }
  13. }
  14. </script>