I have set up the Vue table header parameters as follows:
render: (h, params) => {
return h(
'router-link',
{
props: {
tag: 'a',
target: '_blank',
to: {
name: 'physicalserverDetails',
query: {id: params.row.id}
},
}
},
params.row.name
)
}
However, upon checking the generated HTML code, it seems that the target parameter was not included:
<a href="/physicalserverDetails?id=193" class="">CD-Z12</a>
Do you see anything in my configuration that might be causing this issue?