3
0
Fork 0
web-store-retail-h5/store/modules/system.js

20 lines
253 B
JavaScript
Raw Normal View History

const getDefaultState = () => {
return {
priceSymbol: '¥',
priceDecimal: 2,
priceSymbolVisible: false,
}
}
const state = getDefaultState()
const mutations = {}
const actions = {}
export default {
state,
mutations,
actions,
}