在vue中實現(xiàn)頁面跳轉的方式有:1.使用a標簽跳轉;2.使用this.$router.push()函數(shù)跳轉;3.使用router-link標簽跳轉;
在vue中實現(xiàn)頁面跳轉的方式有以下幾種
1.使用a標簽跳轉
<a href="https://www.baidu.com"><button>點擊跳轉</button></a>
2.使用this.$router.push()函數(shù)跳轉
<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>