Update TemplateContainer.vue

pull/6011/head
tugcekucukoglu 2024-07-02 10:02:10 +03:00
parent 19e31d6093
commit 2cb2495148
1 changed files with 6 additions and 1 deletions

View File

@ -21,7 +21,12 @@ export default {
}, },
computed: { computed: {
components() { components() {
return this.templateData.components; return this.templateData.components.map((component) => {
return {
...component,
name: markRaw(component.name)
};
});
} }
} }
}; };