diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-12-23 21:01:35 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-12-23 21:01:35 +0100 |
commit | 9d308d5efa51b8ecad8c7687b066df016f8298df (patch) | |
tree | d2c6c3441df0951c8352c817b75d19824a3eebbd /src-vue/src/plugins/store.ts | |
parent | ff2304522067c783406fbcfce12532105ca3b377 (diff) | |
download | FlightCore-9d308d5efa51b8ecad8c7687b066df016f8298df.tar.gz FlightCore-9d308d5efa51b8ecad8c7687b066df016f8298df.zip |
Restore more logic from main branch
Diffstat (limited to 'src-vue/src/plugins/store.ts')
-rw-r--r-- | src-vue/src/plugins/store.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts new file mode 100644 index 00000000..d77fbc42 --- /dev/null +++ b/src-vue/src/plugins/store.ts @@ -0,0 +1,9 @@ +import { createStore } from 'vuex'; + + +/** + * This is called when application root component has been mounted. + * It invokes all Rust methods that are needed to initialize UI. + */ +async function _initializeApp(state: any) { +} |