This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-05-05_vuex-11-a-challe.../src/store/modules/cart/getters.js

9 lines
128 B
JavaScript
Raw Normal View History

2021-05-05 15:41:12 +02:00
export default {
finalTotal(state) {
return state.total.toFixed(2);
2021-05-05 15:49:18 +02:00
},
quantity(state) {
return state.qty;
2021-05-05 15:41:12 +02:00
}
};