给一个组件绑定自定义事件
用props, $emit,ref
实例如下:
App组件:
<template>
<div>
<h1>{
{msg}}</h1>
<!--通过父组件给子组件传递函数类型的props 实现:子给父传递数据-->
<School :getSchoolName="getSchoolName"/>
<!--通过父组件给子组件绑定一个自定义事件 实现:子给父传递数据(第一种写法,使用@或v-on)-->
<Student v-on:zlg="getStudentName"/>
<!--通过父组件给子组件绑定一个自定义事件 实现:子给父传递数据(第二种写法,使用ref)-->
<Student ref="student"/>
</div>
</template>
<script>
//引入组件
import Student from './Student'
import School from './School'
export default{
name:'App',
components:{
Student,
Schoo