vue computed可以监听pinia的属性吗 给个示例
时间: 2023-02-17 09:03:58 浏览: 308
是的,Vue computed 可以监听 Pina 的属性。
示例:
```
<template>
<div>
<p>{{ fullName }}</p>
<p>{{ firstName }}</p>
<p>{{ lastName }}</p>
</div>
</template>
<script>
export default {
state() {
return {
firstName: "John",
lastName: "Doe"
}
},
computed: {
fullName() {
return this.firstName + " " + this.lastName;
}
}
}
</script>
```
在这个示例中,我们在 Pina 的 state 中定义了 firstName 和 lastName 属性,并在 computed 中定义了 fullName。当 firstName 或 lastName 发生更改时,fullName 也会相应地更新。
阅读全文
相关推荐
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![-](https://img-home.csdnimg.cn/images/20250102104920.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)
![-](https://img-home.csdnimg.cn/images/20241226111658.png)