Hi guys I am trying to click a button in my Vue.js page to a different .html page that exist in my public folder. So I am using this way
<button @click="window.location='public/test.html'">See Results</button>
However I get an error that says
"Property or method "window" is not defined on the instance but referenced during render"
How do i navigate to a different page in Vue.js?