下面我就為大家分享一篇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中如何使用父元件呼叫子元件事件的詳細內容。更多資訊請關注PHP中文網其他相關文章!