fu.vue ,
代码:
{
<button @click=“Parent”>点击
<script>
import Child from "../zi/zi";
export default {
components: {
Child
},
methods: {
Parent() {
this.$refs.mychild.parentHandleclick();
}
}
};
</script>
}
zi.vue,
代码
{
</template>
<script>
export default {
methods: {
parentHandleclick() {
alert('子')
}
}
};
</script>
}