在 Vue 中,可以使用 ref 属性获取对 DOM 元素或组件实例的引用。ref 可以被添加到任何 HTML 元素或自定义组件上。通过在 Vue 实例中使用 $refs 属性,可以访问 ref 对象并获取相应的 DOM 元素或组件实例。
以下是一个使用 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 属性来修改该元素的文本内容。
以下是一个使用 ref 引用组件实例的示例:
<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 组件的实例,并在 mounted 钩子中使用 $refs 属性来访问该实例并调用其 doSomething 方法。