javascript
this.$router.push({
name: 'B',
params: {
sometext: '一只羊出没'
}
})
// 子组件中可以这样引用 (这种方式地址栏不会显示参数)
{{this.$route.params.sometext}}
this.$router.push({
name: 'B',
params: {
sometext: '一只羊出没'
}
})
// 子组件这样引用(地址栏会显示参数)
{{this.$route.query.sometext}}