在 Vue 中,可以使用 ref 屬性獲取對 DOM 元素或組件實(shí)例的引用。ref 可以被添加到任何 HTML 元素或自定義組件上。通過在 Vue 實(shí)例中使用 $refs 屬性,可以訪問 ref 對象并獲取相應(yīng)的 DOM 元素或組件實(shí)例。
以下是一個(gè)使用 ref 引用 DOM 元素的示例:
<template>
<div>
<button ref="myButton" @click="handleClick">Click me!</button>
</div>
</template>
<script>
export default {
methods: {
handleClick() {
this.$refs.myButton.innerText = 'Button clicked!';
},
},
};
</script>
在上述代碼中,ref 屬性被用于引用 button 元素,并在 handleClick 方法中使用 $refs 屬性來修改該元素的文本內(nèi)容。
以下是一個(gè)使用 ref 引用組件實(shí)例的示例:
<template>
<div>
<my-component ref="myComponentRef" />
</div>
</template>
<script>
import MyComponent from './MyComponent.vue';
export default {
components: {
MyComponent,
},
mounted() {
const myComponentInstance = this.$refs.myComponentRef;
myComponentInstance.doSomething();
},
};
</script>
在上述代碼中,ref 屬性被用于引用 MyComponent 組件的實(shí)例,并在 mounted 鉤子中使用 $refs 屬性來訪問該實(shí)例并調(diào)用其 doSomething 方法。