组件的自定义事件

 子组件MyStudent.vue

<template>
  <div class="student">
    <h2>学生姓名:{{ name }}</h2>
    <h2>学生年龄:{{ age }}</h2>
    <button @click="sendStudentName">把学生姓名给App</button>
    <button @click="unbind">解绑自定义事件</button>
    <button @click="death">销毁当前组件的实例(vc)</button>
  </div>
</template>

<script>
export default {
  name: "MyStedent",
  props: ["atguigu"],
  data() {
    return {
      name: "张三",
      age: 18,
    };
  },
  methods: {
    sendStudentName() {
      //触发MyStudent组件实例身上的atguigu事件
      this.$emit("atguigu", this.name, 666, 888, 999);
      this.$emit("demo");
    },
    unbind() {
      this.$off("atguigu"); //解绑一个自定义事件
      this.$off(["atguigu", "demo"]); //解绑多个自定义事件
      this.$off(); //解绑所有的自定义事件
    },
    death() {
      this.$destroy(); //销毁了当前Student组件的实例,销毁后所有Student实例的自定义事件全都不奏效
    },
  },
};
</script>
<style>
.student {
  background-color: pink;
}
</style>

App.vue

<template>
  <div class="app">
    <h1>{{ msg }}</h1>
    <!-- 通过父组件给子组件传递函数类型的props实现:子给父传递数据 -->
    <!-- <MySchool :getSchoolName="getSchoolName" /> -->
    <!-- 通过父组件给子组件绑定一个自定义事件实现:子给父传递数据(第一种写法,使用@或v-on)(.once只触发一次) -->
    <MyStudent v-on:atguigu="getStudentName" @demo="m1" />
    <!-- 通过父组件给子组件绑定一个自定义事件实现:子给父传递数据 (第二种写法,使用ref)-->
    <!-- <MyStudent ref="student" /> -->
  </div>
</template>

<script>
//引入组件
import MySchool from "./components/MySchool.vue";
import MyStudent from "./components/MyStudent.vue";

export default {
  name: "App",
  components: {
    MySchool,
    MyStudent,
  },
  data() {
    return {
      msg: "你好啊",
    };
  },
  methods: {
    getSchoolName(name) {
      console.log("App收到了学校名", name);
    },
    getStudentName(name, ...params) {
      console.log("App收到了学生姓名", name, params);
    },
    m1() {
      console.log("demo被触发了");
    },
  },
  // mounted() {
  //   // this.$refs.student.$on("atguigu", this.getStudentName);//绑定自定义事件
  //   this.$refs.student.$once("atguigu", this.getStudentName);//绑定自定义事件(一次性)
  // },
};
</script>

<style>
.app {
  background-color: green;
}
</style>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值