Widgets work
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s

This commit is contained in:
2026-04-30 19:39:53 +02:00
parent ffb23b08eb
commit 139e7d0ef5
16 changed files with 512 additions and 296 deletions

View File

@@ -1,3 +1,13 @@
<script setup>
const props = defineProps(['content']);
const name = ref('');
onMounted(() => {
name.value = props.content || 'No content';
});
</script>
<template>
<h2>This is a test widget</h2>
<h2>This is a {{name}} widget</h2>
</template>