FFIVE
Vue实施。希望会有所帮助。<template><div @click='handler()'>{{ text }}</div></template><script>export default { props: { href: String, text: String, }, methods: { handler() { const a = document.createElement('a') a.setAttribute('href', this.href) a.dispatchEvent(new MouseEvent("click", {'view': window, 'bubbles': true, 'cancelable': true})) } }}</script>