mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 14:39:30 -07:00
26 lines
541 B
Vue
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>
|