标签:method class outer col this link 页面 返回 跳转
一、to +跳转路径
<router-link to="/">跳转到主页</router-link>
二、函数跳转
<button @click="goHome">[跳转到主页]</button> methods: { goHome () { this.$router.push(‘/Test‘) } }
三、统计浏览器返回
<button @click="goHome">[跳转到主页]</button> methods: { downpage () { this.$router.go(-1) } }
标签:method class outer col this link 页面 返回 跳转
原文地址:https://www.cnblogs.com/yc-c/p/12868216.html