我有一个动态表组件,在其中我通过数组传递值。 但是我无法调用此数组传递的函数。
methods: {
getLog () {
let newLog = {
'lead_id': `<a href="javascript:void(0)" @click="showLog(${element.integration_id})">${element.lead_id}</a>`,
'name': element.lead_name,
'email': element.lead_email,
'status': status,
'due_date': element.integration_datetime
}
arrayLog.push(newLog)
},
showLog(id){
console.log(id)
}
}
我希望点击带有事件@click的链接时会运行函数showLog()