refactor Content_types template

This commit is contained in:
SimonGschnell
2024-09-20 11:26:08 +02:00
parent ca4865011d
commit 9343d1ee0c
2 changed files with 2 additions and 2 deletions
@@ -31,7 +31,7 @@ export default {
},
template: /*html*/ `
<!-- div that contains the content -->
<div v-html="content" v-if="content" :content="content" />
<div v-html="content" v-if="content" ></div>
<p v-else>Content was not found</p>
`,
};
@@ -26,7 +26,7 @@ export default {
},
template: /*html*/ `
<!-- div that contains the content -->
<div v-html="content" v-if="content" :content="content" />
<div v-html="content" v-if="content" ></div>
<p v-else>Content was not found</p>
`,
};