Files
vue-bits/src/components/layouts/CategoryLayout.vue
2025-07-12 15:28:52 +03:00

26 lines
541 B
Vue

<template>
<main class="app-container">
<Header />
<section class="category-wrapper">
<Sidebar />
<div class="category-page">
<router-view />
</div>
</section>
<Toast
position="bottom-right"
:closeButtonProps="customToastStyles.customToastCloseButton"
:pt="customToastStyles"
/>
</main>
</template>
<script setup lang="ts">
import { customToastStyles } from '@/utils/utils';
import Header from '../navs/Header.vue';
import Sidebar from '../navs/Sidebar.vue';
</script>