You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
608 B
16 lines
608 B
const getters = {
|
|
sidebar: state => state.app.sidebar,
|
|
// visitedViews: state => state.tagsView.visitedViews,
|
|
device: state => state.app.device,
|
|
token: state => state.user.token,
|
|
merchantsName: state => state.user.merchantsName,
|
|
merchantsAdminId: state => state.user.merchantsAdminId,
|
|
detailsList: state => state.commoditydetails.detailsList,
|
|
merchantsId: state => state.user.merchantsId,
|
|
getstate: state => state.user.getstate,
|
|
goodsID: state => state.goods.goodsID,
|
|
goodstate: state => state.goods.goodstate,
|
|
GoodsDetails: state => state.goods.GoodsDetails
|
|
}
|
|
export default getters
|