Mpvue uses the a tag to jump to the page. How to write the href path of the a tag?

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?
clipboard.png

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?

Jun.16,2021

/pages/index/main

/pages/index/index

sign in


is it all right? I find that clicking with a tag will have no effect

Menu