vue emit傳遞多個參數

//子組件
this.$emit('refrehData',false,true);

//父組件
<child @refrehData="refrehData(arguments)"></child>

refrehData(data) {
	this.data1= data[0];
	this.data2= data[1];
}

 

傳遞一個參數的 默認就能夠javascript

//子組件
this.$emit('refreshData',false);

//父組件
<child @refreshData="refreshData"></child>

refreshData(data) {
	this.data= data;
}
相關文章
相關標籤/搜索