Currently, I am developing my personal website using vuejs and I am running into an error when I am trying to open up my resume in another window through a button click. What is happening is that, when I click the corresponding button, instead of opening-up the pdf, it renders the home page again. Here is my button HTML element:
<button class="button in-left2" v-on:click="openPdf()" target="_blank">Resume</button>
Here is the corresponding Method
openPdf(){
window.open("./Avi-Dave-Resume.pdf")
}
My Resume is in the directory where I am using the vue cli to render my website. My Resume is in the directory where I run my server. I feel like my file path is wrong, but would love to know more about the issue.