ref 被用来给元素或子组件注册引用信息。引用信息将会注册在父组件的 $refs 对象上。
如果在普通的 DOM 元素上使用,引用指向的就是 DOM 元素;如果用在子组件上,引用就指向组件实例:
<template>
<div>
<!-- `vm.$refs.p` will be the DOM node -->
<p ref="p" id="p_id">hello</p>
<!-- `vm.$refs.child` will be the child component instance -->
<child-component ref="child"></child-component>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue'
export default {
name: 'test',
components: {
ChildComponent
},
mounted(){
console.log(document.getElementById('p_id'));
console.log(this.$refs.p);
console.log(this.$refs.child);
}
}
</script>