我有一个带有按钮的祝酒消息,并且我希望每当单击按钮时,它都会触发一种组件方法@click="processBooking"
。我该怎么做或更好的方法呢?
methods:{
addTour(){
this.addSelectedTour({tourName:this.tourName})
let toastContent = '<span>'+this.tourName+" added."+'</span>'+'<button @click="processBooking" class="btn-flat toast-action booknow">Book Now</button>'
M.toast({html: toastContent})
},
processBooking(){
//process
}
},