I have the following code in my vue file. The issue I am facing here is that page reloads when I click on here. I have added event.preventDefault() but couldn't resolve the issue. Please help me find where I am going wrong.
<template>
<p>Please click <a @click="stopProcess">here</a></p>
</template>
<script>
export default {
methods: {
stopProcess(){
event.preventDefault()
var page = "../../../pages/page.pdf"
window.open(page);
}
}
};
</script>