Files
BinarySandia04 139e7d0ef5
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s
Widgets work
2026-04-30 19:39:53 +02:00

13 lines
217 B
Vue

<script setup>
const props = defineProps(['content']);
const name = ref('');
onMounted(() => {
name.value = props.content || 'No content';
});
</script>
<template>
<h2>This is a {{name}} widget</h2>
</template>