Vue3通过ref操作Dom元素及hooks的使用方法
作者:Nanchen_42 时间:2024-04-27 16:07:32
Vue3 ref获取DOM元素
<div ref="divBox">Hello</div>
import {ref,onMounted} from 'vue'
setup() {
const divBox = ref(null);
onMounted(()=>{
console.log(divBox.value);
})
return{divBox}
}
父组件监听子组件中的元素
在父组件中的子组件里会打印一个proxy(实例),通过实例去获取里面的属性或者值
setup() {
const commer = ref(null)
onMounted(()=>{
console.log(commer);
console.log(commer.value);
})
return {
commer
}
}
看这个例子:
父组件:
<template>
<div class="about">
<h1>This is an about page</h1>
<com ref="commer"></com>
<h3>通过ref用父组件接收子组件中的宽和高:<span>{{numWidht}} {{numHeight}}</span></h3>
</div>
</template>
<script>
import com from '../components/com.vue'
import {ref,onMounted} from 'vue'
export default {
components: {
com
},
setup() {
const commer = ref(null)
const numWidht = ref(0);
const numHeight = ref(0)
onMounted(()=>{
numWidht.value =commer.value.width
numHeight.value =commer.value.height
})
return {
commer,numWidht,numHeight
}
}
}
</script>
子组件:
<template>
<h1>屏幕尺寸:</h1>
<h1>宽度:{{width}}</h1>
<h1>高度:{{height}}</h1>
</template>
<script>
// import { ref,onMounted } from 'vue';
import useWindwoResize from '../hooks/useWindowResize'
export default {
setup(){
const {width, height} = useWindwoResize()
return{width,height}
}
};
</script>
<style lang="scss" scoped>
</style>
hooks页面:
import {onMounted, onUnmounted, ref} from 'vue';
function useWindowResize(){
const width = ref(0)
const height = ref(0)
function onResize(){
width.value = window.innerWidth
height.value = window.innerHeight
}
onMounted(()=>{
window.addEventListener("resize",onResize);
onResize();
})
onUnmounted(()=>{
window.removeEventListener('resize',onResize);
})
return{
width,
height
}
}
export default useWindowResize;
Vue3 hooks
在vue3中的hooks其实就是函数的写法,就是将文件的一些单独功能的js代码进行抽离出来,放到单独的js文件中。这样其实和我们在vue2中学的混入(mixin)比较像。
父组件
<h1>屏幕尺寸:</h1>
<div>宽度:{{ width }}</div>
<div>高度:{{ height }}</div>
引入hooks中的js文件
import useWindwoResize from '../hooks/useWindowResize';
setup(){
const {width, height} = useWindwoResize()
return{width,height}
}
新建hooks文件夹在里面新建useWindowResize.js文件,内容如下:
import {onMounted, onUnmounted, ref} from 'vue';
function useWindowResize(){
const width = ref(0)
const height = ref(0)
function onResize(){
width.value = window.innerWidth
height.value = window.innerHeight
}
onMounted(()=>{
window.addEventListener("resize",onResize);
onResize();
})
onUnmounted(()=>{
window.removeEventListener('resize',onResize);
})
return{
width,
height
}
}
export default useWindowResize;
来源:https://%bcnet%/nanchen_J/article/details/123250504
标签:Vue3,操作Dom,Vue3,hooks
0
投稿
猜你喜欢
Python导入父文件夹中模块并读取当前文件夹内的资源
2023-08-27 09:03:43
Python Pygame实战之打砖块小游戏
2021-04-10 01:41:11
workerman写mysql连接池的实例代码
2024-01-20 02:52:26
mysql日志系统的简单使用教程
2024-01-15 21:09:05
Python对列表排序的方法实例分析
2023-03-02 18:26:57
关于torch中tensor数据类型的转换
2022-07-16 20:59:59
MySQL修改默认引擎和字符集详情
2024-01-14 21:37:27
由浅入深讲解Javascript继承机制与simple-inheritance源码分析
2024-05-10 14:06:50
Python ttkbootstrap 制作账户注册信息界面的案例代码
2021-02-10 04:05:11
php实现的简单日志写入函数
2024-05-02 17:33:43
目标检测mAP的概念及公式详解
2022-05-24 17:55:57
Python 异常处理Ⅳ过程图解
2023-06-28 16:05:53
基于vuex实现购物车功能
2024-05-08 10:43:35
Python爬取知乎图片代码实现解析
2023-02-22 08:14:14
使用Python实现一个蔡徐坤大战篮球的小游戏(推荐)
2022-03-07 19:02:13
python如何每天在指定时间段运行程序及关闭程序
2021-08-05 05:42:05
python paramiko远程服务器终端操作过程解析
2022-10-08 00:50:14
Python模块介绍与使用详细讲解
2022-08-31 02:38:33
Django表单提交后实现获取相同name的不同value值
2023-08-11 01:59:31
Python闭包及装饰器运行原理解析
2022-12-16 20:59:06