使用ref来获取节点信息
<template>
<div ref="DOM">xx</div>
</template>
<script setup>
/*
*/
import {ref} from 'vue'
const DOM = ref(null)
console.log(DOM) // <div/>xx</div>
</script>
使用ref 进行父组件调用子组件方法
网上一些博客直接使用ref调用是不可以的,需要使用vue3的API defineExpose方法将子组件的属性方法和需要暴露出来的属性放进去才可以调用
父组件
<template>
<childComponent ref="DOM" />
<button @click="handleClick">click to handle child event</button>
</template>
<script setup>
import {ref} from 'vue'
const DOM = ref(null)
function handleClick() {
DOM.value.childClickEvent()
}
</script>
子组件
<template>
<div>child component</div>
</template>
<script setup>
import {defineExpose} from 'vue'
function chlidClickEvent() {
//
}
defineExpose({
childClickEvent
})
</script>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。