javascript - vue如何根据配置监听的事件类型?
仅有的幸福
仅有的幸福 2017-06-12 09:32:45
0
2
611
Vue.component('button-counter', {
  template: '<button v-on:click="increment()">{{ counter }}</button>',
  data: function () {
    return {
      counter: 0
    }
  },
  methods: {
    increment: function () {
      this.counter += 1
    }
  },
})

比如上面的组件,我希望 v-on监听的事件是 父组件传递过来的,而不是在这里写死为click,我该怎么写?

我当然知道使用props传递,我想知道v-on后面该怎么写。如果直接写propname的话vue会认为要监听的事件是propname,而不是具体的事件。

仅有的幸福
仅有的幸福

全部回复(2)
洪涛

题主的需求比较特殊,如果是这样的话可能只能使用render代替template了:

<p id="app">
  <button-counter :event="'click'">abc</button-counter>
</p>
const counter = Vue.component('button-counter', {
  render(createElement) {
    return createElement(
      'button', {
        on: {
          [this.event]: this.increment,
        },
      },
      `${this.counter}`,
    )
  },
  data() {
    return {
      counter: 0,
    }
  },
  props: {
    event: String
  },
  methods: {
    increment() {
      this.counter += 1
    },
  },
})

new Vue({
  el: '#app',
  components: {
    'button-counter': counter,
  },
})
黄舟

父组件传参给字组件都是通过props的,props可以是function,所以你可以传一个function给字组件

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板