1.使用a标签的href实现页面跳转。
跳转
2.使用声明式导航router-link
跳转
3.使用编程式导航 router.push()
<div @click=“Goto()”>跳转
友情提醒:this.
r
o
u
t
e
和
t
h
i
s
.
route和this.
route和this.router的区别
在Vue中this.
r
o
u
t
e
是
路
由
[
参
数
对
象
]
,
所
有
路
由
中
的
参
数
p
a
r
a
m
s
,
q
u
e
r
y
都
属
于
他
,
t
h
i
s
.
route是路由[参数对象],所有路由中的参数params,query都属于 他,this.
route是路由[参数对象],所有路由中的参数params,query都属于他,this.router是一个路由[导航对象],用它可以方便的使用JS代码实现路由的前进或后退,跳转到新的URL地址。