@empathyco/x-components
Version:
Empathy X Components
21 lines (19 loc) • 362 B
JavaScript
/**
* {@link XStoreModule} For the device module.
*
* @internal
*/
const deviceXStoreModule = {
state: () => ({
name: null
}),
getters: {},
mutations: {
setName(state, name) {
state.name = name;
}
},
actions: {}
};
export { deviceXStoreModule };
//# sourceMappingURL=module.js.map