Vue Error in v-on handler: “TypeError: path.indexOf is not a function“

reason:

My path is written like this

@click="openBlank({ path: '/reissue'},{historyOpinion:ho})"

It belongs to non-standard writing   Just change it to this

@click="openBlank('/reissue',{historyOpinion:ho})"

Read More: