Having an issue with a button click event in Vue that opens a PDF using window.open(). It's working well on all browsers except for Safari on MAC. Any ideas what could be causing this? Should I pass $event to the method?
<div class="button-download">
<button
class="button button--primary__small"
@click="openPDF"
>
Access Document
</button>
</div>
methods: {
openPDF: () => {
window.open("access-document.pdf", "_blank");
}
}