下面我就為大家分享一篇Vue父元件呼叫子元件事件方法,具有很好的參考價值,希望對大家有幫助。
Vue父元件傳遞事件/呼叫事件
##方法一:子元件監聽父元件傳送的方法
#方法二:父元件呼叫子元件方法
#子元件:export default { mounted: function () { this.$nextTick(function () { this.$on('childMethod', function () { console.log('监听成功') }) }) }, methods { callMethod () { console.log('调用成功') } } }#父元件:
<child ref="child" @click="click"></child> export default { methods: { click () { this.$refs.child.$emit('childMethod') // 方法1 this.$refs.child.callMethod() // 方法2 }, components: { child: child } }上面是我整理給大家的,希望未來會對大家有幫助。 ###在Vue中如何建立元件#############在jQuery中如何實作動態新增li標籤並新增屬性和綁定事件方法############在elementui中如何實作預設樣式修改#######
以上是在Vue中如何使用父元件呼叫子元件事件的詳細內容。更多資訊請關注PHP中文網其他相關文章!