zoukankan      html  css  js  c++  java
  • vue2.0 中#$emit,$on的使用详解

    vue1.0中 vm.$dispatch 和 vm.$broadcast 被弃用,改用$emit,$on

    vm.$on( event, callback )

    监听当前实例上的自定义事件。时间可以由vm.$emit触发。回调函数会接受所有传入事件触发函数的额外参数。

    vm.$emit(event,[...args])

    触发当前实例上的自定义事件。附加参数都会传给监听器回调。

    例子:

    //父组件
    <template>
      <ratingselect @select-type="onSelectType"></ratingselect>
    </template>
    <script>
      data () {
       return {
        selectType: 0,
      },
      methods: {
       onSelectType (type) {
        this.selectType = type
       }
      }
    </script>
    父组件使用 @select-type="onSeleType"。@就是v-on的简写,监听由子组件vm.$emit触发的事件,通过@select-type()接受从子组件传过来的数据,通知父组件数据改变了。
    // 子组件
    <template>
     <div>
      <span @click="select(0, $event)" :class="{'active': selectType===0}"></span>
      <span @click="select(1, $event)" :class="{'active': selectType===1}"></span>
      <span @click="select(2, $event)" :class="{'active': selectType===2}"></span>
     </div>
    </template>
    <script>
      data () {
       return {
        selectType: 0,
      },
      methods: {
        select (type, event) {
          this.selectType = type
          this.$emit('select-type', type)
       }
      }
    </script>

    子组件通过$emit来触发事件,讲参数传递过去。

     

     

  • 相关阅读:
    简单封装DBUtils 和 pymysql 并实现简单的逆向工程生成class 类的py文件
    python学习第42、43天 HTMLCSS
    python学习第40天
    python学习第41天
    python学习第39天
    python学习第38天
    python学习第37天
    python学习第36天
    python学习第35天
    json转换为字典
  • 原文地址:https://www.cnblogs.com/wenshaochang123/p/8417276.html
Copyright © 2011-2022 走看看