I currently have a button that needs to be linked to another page. This is the code I am working with at the moment. How can we write this login functionality in vue.js? It should direct users to the page "/shop/customer/login"
<div class="space-x-6">
<button>Login</button>
<button @click="$store.commit('openPaintCalculator')">
Calculator
</button>
</div>
I am still in the early stages of learning vue.js.