香港服务器的vue跳转页面使用哪些标签

已关闭留言

香港服务器的vue中可以实现跳转页面的标签有以下两种

1.使用a标签跳转

<a href=”https://www.baidu.com”><button>点击跳转</button></a>

2.使用router-link标签跳转

<router-link :to=”{path:’testDemo’,query:{setid:123456}}”>

<button>点击跳转</button>

</router-link>