vue中的computed中优化这段代码 product_description() { return this.$store.state.settingGloble.product_description; },
时间: 2024-04-08 11:30:30 浏览: 72
ProductDetail.vue
在Vue的computed属性中,可以对这段代码进行一些优化。可以使用对象解构来简化代码,并将`this.$store.state.settingGloble.product_description`直接返回,如下所示:
```javascript
product_description() {
const { product_description } = this.$store.state.settingGloble;
return product_description;
}
```
通过使用对象解构,可以直接从`this.$store.state.settingGloble`中提取`product_description`属性,从而简化代码并提高可读性。
阅读全文