removed reactivity warning 'Vue received a Component that was made a reactive object'

This commit is contained in:
Werner Masik
2023-12-29 17:09:34 +01:00
parent dcc0093987
commit 9460d2b2cd
+1 -1
View File
@@ -47,7 +47,7 @@ export default {
return console.error('Component missing for ' + key);
tabs[key] = {
component: Vue.defineAsyncComponent(() => import(config.component)),
component: Vue.markRaw(Vue.defineAsyncComponent(() => import(config.component))),
title: config.title || key,
config: config.config,
key