Some checks failed
Telegram Mini App Shop Builder / Compute version metadata (push) Has been cancelled
Telegram Mini App Shop Builder / Run Frontend tests (push) Has been cancelled
Telegram Mini App Shop Builder / Run Backend tests (push) Has been cancelled
Telegram Mini App Shop Builder / Run PHP_CodeSniffer (push) Has been cancelled
Telegram Mini App Shop Builder / Build module. (push) Has been cancelled
Telegram Mini App Shop Builder / release (push) Has been cancelled
16 lines
481 B
Vue
16 lines
481 B
Vue
<template>
|
|
<div class="flex flex-col items-center justify-center text-center py-16">
|
|
<span class="text-5xl mb-4">🛒</span>
|
|
<h2 class="text-xl font-semibold mb-2">Здесь нет товаров</h2>
|
|
<p class="text-sm mb-4">
|
|
Попробуйте изменить настройки фильтров
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useRouter } from 'vue-router';
|
|
const router = useRouter();
|
|
const goBack = () => router.back();
|
|
</script>
|