vue 不同元素绑定同一事件

//不同元素绑定同一事件
<template>
  <div id="example-3">
  <button v-on:click="say('hi')">Say hi</button>
  <button v-on:click="say('what')">Say what</button>
</div>
</template>

<script>
export default {
  name: 'demo4',
  data(){
      return{
        
      }
  },
  methods:{
     say (message) {
      alert(message)
    }
  }
}
</script>

<style scoped>

</style>
发布了180 篇原创文章 · 获赞 36 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/weixin_38404899/article/details/103386674