web-base-h5/store/getters.js

16 lines
435 B
JavaScript
Raw Normal View History

2025-03-23 09:29:40 +08:00
/*
* @Descripttion:
* @version:
2025-03-23 09:29:40 +08:00
* @Author: kBank
* @Date: 2022-10-24 10:45:39
*/
const getters = {
shopCarLength: state => state.user.shopCarLength,
smallCarLength: state => state.user.smallCarLength,
user: state => state.user.user,
priceSymbol: state => state.system.priceSymbol,
priceDecimal: state => state.system.priceDecimal,
priceSymbolVisible: state => state.system.priceSymbolVisible,
2025-03-23 09:29:40 +08:00
}
export default getters