Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

Commit

Permalink
Use product type for StoreItem
Browse files Browse the repository at this point in the history
  • Loading branch information
hazelthatsme committed Nov 20, 2023
1 parent c5f8aec commit 995d2bd
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/components/store/StoreItem.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<script setup lang="ts">
import { Product } from '@/constants/types/Product.types';
const { item, size } = defineProps<{
size?: 'small' | 'big';
item?: {
slug: string;
title: string;
thumbnail: string;
};
item?: Product;
}>();
</script>

Expand Down

0 comments on commit 995d2bd

Please sign in to comment.