vue 点击a页面按钮后像b页面传一个true数据
时间: 2024-05-08 20:19:55 浏览: 79
vue获取当前点击的元素并传值的实例
你可以通过使用Vue的路由器来传递参数。在按钮的点击事件中,你可以使用`this.$router.push()`方法来导航到B页面,并在参数中传递布尔值。在B页面中,你可以通过`$route.params`从路由器参数中获取布尔值。以下是一个示例代码:
在A页面中:
```javascript
// 点击事件
goToB() {
this.$router.push({
name: 'B',
params: { data: true }
});
}
```
在B页面中:
```javascript
// 获取参数
mounted() {
const data = this.$route.params.data;
console.log(data); // 输出 true
}
```
阅读全文