vue3中如何使用这段代码computed: { ...mapGetters(['getShop'])}中的getShop方法
时间: 2023-05-20 08:01:24 浏览: 95
vue3.x中使用cesium,vue3.x+Cesium
在Vue3中,可以使用以下代码来使用computed和mapGetters:
```
import { computed } from 'vue'
import { mapGetters } from 'vuex'
export default {
computed: {
...mapGetters(['getShop']),
computedShop() {
return computed(() => {
return this.getShop
})
}
}
}
```
然后,你可以在模板中使用computedShop来获取getShop方法的返回值。
阅读全文