# 本文已参与「新人创作礼」活动,一起开启掘金创作之路
代码中,Helloword是子组件
<template>
<div class="index">
<Header></Header>
<HelloWorld></HelloWorld>
<button @click="goPro">跳转</button>
</div>
</template>
mounted(){
console.log(this.$children)
}
用ref绑定子组件,在父组件中通过$refs取对应的值或者方法
<HelloWorld ref="hello"></HelloWorld>
this.$refs.hello.属性
this.$refs.hello.方法