adminforth 2.36.0-next.1 → 2.36.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/spa/src/App.vue +2 -2
- package/package.json +1 -1
package/dist/spa/src/App.vue
CHANGED
|
@@ -329,8 +329,8 @@ async function loadPublicConfig() {
|
|
|
329
329
|
|
|
330
330
|
// initialize components based on data attribute selectors
|
|
331
331
|
onMounted(async () => {
|
|
332
|
-
|
|
333
|
-
|
|
332
|
+
await loadPublicConfig(); // run this in async mode
|
|
333
|
+
await loadMenu(); // and this
|
|
334
334
|
// before init flowbite we have to wait router initialized because it affects dom(our v-ifs) and fetch menu
|
|
335
335
|
await initRouter();
|
|
336
336
|
|