vehicle and base list items
This commit is contained in:
parent
3df3ba4ebc
commit
4ea0f9b5a1
9 changed files with 61 additions and 9 deletions
12
components/base/ListImageItem.vue
Normal file
12
components/base/ListImageItem.vue
Normal 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>
|
15
components/base/ListItem.vue
Normal file
15
components/base/ListItem.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue