slot怎么傳多個參數?
vue slot 可以按照以下方式傳遞多個參數:子組件
<button @click="setEvent">自定義事件傳參</button>
methods:{
setEvent () {
this.$emit('getEvent','參數一','參數二')
}
}
父組件
<child-event @getEvent="handlerEvent"></child-event>
methods:{
handlerEvent ($event) {
console.log($event)
}
}。