problem description
I just started to contact mpvue,. I would like to ask you to use a tag to achieve page jump, how to write the href path?
for example, the following two pages, if you want to jump from index to login page, how to write the href path?
related codes
<template>
<div class="container" @click="clickHandle("test click", $event)">
<div class="hy_text"></div>
<div class="login_register">
<div class="login" @click=""><a href=""></a></div>
<div class="register"></div>
</div>
</div>
</template>
how should I write the path of the a tag href attribute in the above code?