vehicle and base list items

This commit is contained in:
Julian Krauser 2024-11-03 15:34:48 +01:00
parent 3df3ba4ebc
commit 4ea0f9b5a1
9 changed files with 61 additions and 9 deletions

View file

@ -0,0 +1,12 @@
<template>
<p>ListImageItem: {{ data }}</p>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
import type BaseCollection from "~/types/collection/baseCollection";
defineProps({
data: Object as PropType<BaseCollection>,
});
</script>

View file

@ -0,0 +1,15 @@
<template>
<p>
ListItem:
{{ data }}
</p>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
import type BaseCollection from "../../types/collection/baseCollection";
defineProps({
data: Object as PropType<BaseCollection>,
});
</script>