chore: script setup components (#7299)

This commit is contained in:
Kuchenpirat
2026-03-23 21:18:25 +01:00
committed by GitHub
parent 3ad2d9155d
commit 5ab6e98f9e
47 changed files with 1721 additions and 2453 deletions

View File

@@ -52,14 +52,14 @@
</v-card>
</template>
<script lang="ts" setup>
<script setup lang="ts">
interface LinkProp {
text: string;
url?: string;
to: string;
}
const props = defineProps({
defineProps({
link: {
type: Object as () => LinkProp,
required: true,
@@ -70,6 +70,4 @@ const props = defineProps({
default: "",
},
});
console.log("Props", props);
</script>