/** * sometimes, CMS wants to give full control on components. This might not be a good practice. * SO MAKE SURE TO SANITIZE ALL YOUR STRINGS */ export default defineEventHandler(() => { return { props: ['lastname', 'firstname'], // don't forget to sanitize setup: ` const fullName = computed(() => props.lastname + ' ' + props.firstname); const count = ref(0); return {fullName, count} `, template: '
my name is {{ fullName }}, count: {{count}}. I am defined by Interactive in the setup of App.vue. My full component definition is retrieved from the api
' } })