有一個packpackVue組件, 需要傳參數(shù)role,綁定closeAction,回調(diào)方法closeMethod
<packpackVue :role="role" v-on:closeAction="closeMethod"></packpackVue>
回調(diào)方法
methods:{
closeMethod:function(res){
console.log(res)
}
}
組件中,調(diào)用close方法時回調(diào)
methods:{
close:function(){
this.$emit("closeAction",["回調(diào)返回res數(shù)據(jù)"])
}
}