feat(spa): UI changes

This commit is contained in:
2025-10-22 17:47:15 +03:00
parent 4936e6f16c
commit ed8592c19d
10 changed files with 112 additions and 102 deletions

View File

@@ -1,10 +1,5 @@
<template>
<div ref="goodsRef" class="pb-10">
<div class="px-5 fixed z-50 w-full opacity-90" style="bottom: var(--tg-safe-area-inset-bottom);">
<div class="bg-base-300 flex justify-between p-2 rounded-xl shadow-md">
<SearchInput/>
</div>
</div>
<ProductsList
:products="productsStore.products.data"
:hasMore="productsStore.products.meta.hasMore"
@@ -17,11 +12,9 @@
<script setup>
import ProductsList from "@/components/ProductsList.vue";
import SearchInput from "@/components/SearchInput.vue";
import {onMounted} from "vue";
import {useRoute} from "vue-router";
import {useProductsStore} from "@/stores/ProductsStore.js";
import IconFunnel from "@/components/Icons/IconFunnel.vue";
defineOptions({
name: 'Products'