1
0
mirror of https://github.com/TandoorRecipes/recipes.git synced 2026-01-11 09:07:12 -05:00

added basic plugin support

This commit is contained in:
vabene1111
2025-07-17 15:34:51 +02:00
parent 01c4974507
commit 5fcfe09bb6
6 changed files with 68 additions and 14 deletions

View File

@@ -32,7 +32,7 @@ const props = defineProps({
id: {type: String, required: false, default: undefined},
})
const editorComponent = shallowRef(defineAsyncComponent(() => import(`@/components/model_editors/${getGenericModelFromString(props.model, t).model.name}Editor.vue`)))
const editorComponent = shallowRef(getGenericModelFromString(props.model, t).model.editorComponent)
const router = useRouter()