mirror of
https://github.com/aljazceru/meshcore-web.git
synced 2025-12-17 08:14:19 +01:00
11 lines
171 B
JavaScript
11 lines
171 B
JavaScript
import {reactive} from "vue";
|
|
|
|
// global state
|
|
const globalState = reactive({
|
|
connection: null,
|
|
selfInfo: null,
|
|
contacts: [],
|
|
});
|
|
|
|
export default globalState;
|