标签:路由 名称 多个 vue url window 返回 code 变化
// Home.vue
export default {
computed: {
username () {
// 我们很快就会看到 `params` 是什么
return this.$route.params.username
}
},
methods: {
goBack () {
window.history.length > 1
? this.$router.go(-1)
: this.$router.push(‘/‘)
}
}
}
const router = new VueRouter({
routes: [
// 下面的对象就是路由记录
{ path: ‘/foo‘, component: Foo,
children: [
// 这也是个路由记录
{ path: ‘bar‘, component: Bar }
]
}
]
})
// 当 URL 为 /foo/bar,$route.matched 将会是一个包含从上到下的所有对象 (副本)。
标签:路由 名称 多个 vue url window 返回 code 变化
原文地址:https://www.cnblogs.com/qq3279338858/p/10304044.html