UNPKG

@empathyco/x-components

Version:
21 lines (19 loc) 396 B
/** * {@link XStoreModule} For the ExtraParams module. * * @internal */ const extraParamsXStoreModule = { state: () => ({ params: {}, }), getters: {}, mutations: { setParams(state, params) { state.params = { ...state.params, ...params }; }, }, actions: {}, }; export { extraParamsXStoreModule }; //# sourceMappingURL=module.js.map