UNPKG

@empathyco/x-components

Version:
21 lines (19 loc) 349 B
/** * {@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