vue中页面跳转的方式有哪些 vue跳转页面的几种方法

主机教程 建站分享 2年前 (2022-12-06) 441次浏览

文章摘要:vue中页面跳转的方式有哪些 vue跳转页面的几种方法

在vue中实现页面跳转的方式有:1.使用a标签跳转;2.使用this.$router.push()函数跳转;3 […]

在vue中实现页面跳转的方式有:1.使用a标签跳转;2.使用this.$router.push()函数跳转;3.使用router-link标签跳转;

在vue中实现页面跳转的方式有以下几种

1.使用a标签跳转

<a href="https://www.baidu.com"><button>点击跳转</button></a&gt;

2.使用this.$router.push()函数跳转

<template>

 <div id='test'>

 <button @click='goTo()'>点击跳转</button>

 </div>

</template>

<script>

 export default{

 name:'test',

 methods:{

 goTo(){

 this.$router.push('/testDemo');

3.使用router-link标签跳转

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

 <button>点击跳转</button>

</router-link>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:vue中页面跳转的方式有哪些 vue跳转页面的几种方法
文章链接:http://www.7966.org/post/12326.html
转载请注明出处

喜欢 (0)