request list

This commit is contained in:
nquidox 2025-09-18 21:05:19 +03:00
parent 2caf1fb999
commit 291ba7e678
2 changed files with 48 additions and 23 deletions

View file

@ -1,9 +1,16 @@
<script setup lang="ts">
<script setup>
import BoxIcon from '@/components/icons/BoxIcon.vue'
defineProps({
merch: {
type: Object,
required: true,
}
})
</script>
<template>
<n-card title="Card template" class="responsive-card">
<n-card :title="merch.name" class="responsive-card">
<template #cover>
<div class="cover-wrapper">
<BoxIcon />
@ -33,4 +40,5 @@ import BoxIcon from '@/components/icons/BoxIcon.vue'
height: auto;
max-width: 80%;
}
</style>