为了账号安全,请及时绑定邮箱和手机立即绑定

Vue3 简单使用,调用实时监控鼠标指针x,y坐标

Vue3 简单使用,调用实时监控鼠标指针x,y坐标

  • 解构出我们要用的钩子函数
	const {createApp,reactive,toRefs,onMounted,onUnmounted,computed}= Vue
	
  • 鼠标位置实时监听
    注意点:

    • v3里面数据响应式要通过reactive实现 => reactive({})
    • 声明周期变化 v2 <----> v3
    	beforeCreate -> 使用 setup()
        created -> 使用 setup()
        beforeMount -> onBeforeMount
        mounted -> onMounted
        beforeUpdate -> onBeforeUpdate
        updated -> onUpdated
        beforeDestroy -> onBeforeUnmount
        destroyed -> onUnmounted
        errorCaptured -> onErrorCaptured
    
    • ref 、 reactive 、 isRef
    	ref 用于声明基础数据类型,该属性值发生更改,都会发生响应式变化
    	<div id = 'app'>
    		<p @click='add'>{{counter}}</p>
    	</div>
    	setup(){
    		const counter = ref(0);
    		function add(){
    			counter.value++ ;// 用ref 定义的响应式数据,修改的时候必须是 xxx.value形式去更改不然会报错,但是模板里用的时候可以直接用{{xxx}}
    		}
    		return {
    			counter
    		}    		
    	}
    	
    	reactive
    		setup(){
    			const state = reactive({name:'zzz',age:18});
    			return {state}
    		}
    	
    
	function useMouse(){
		const state = reactive({x:0,y:0});
		const update = e=>{
			state.x = e.pageX;
			state.y = e.pageY;
		}
		onMounted(()=>{
			window.addEventListener('mousemove',update);
		})
		onUnmounted(()=>{
			window.removeEventListener('mousemove',update);
		})
		
		return toRefs(state);
	}
	
	const myComp = {
		template:`<div>x : {{x}} y :{{y}}</div>`,
		setup(){
			const {x,y} = useMouse();
			//这里的 x 和 y 都是ref 的 属性值,响应式没有丢失
			return {x,y}
		}
	}
	createApp(myComp).mount("#app")
点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消