добавление выгрузки

This commit is contained in:
2026-04-07 10:41:21 +10:00
parent 30e99d3b2c
commit 4a57d68c8c
9 changed files with 199 additions and 128 deletions

View File

@@ -1,7 +1,7 @@
<script setup>
import { onMounted, ref, watch } from "vue";
import My_naw from "./components/My_naw.vue";
import Section from "./components/Section.vue";
import All_new_section from "./components/All_new_section.vue";
import General_section from "./components/General_section.vue";
import Setings from "./components/Setings.vue";
import Authe from "./components/Authe.vue";
@@ -32,23 +32,22 @@ function handleUpdate(newValue) {
<Authe :currentPage="currentPage" @update="handleUpdate" />
<div v-if="currentPage === 'rezylt'">
<div class="sm:flex">
<My_naw :currentPage="currentPage" @update="handleUpdate" />
<!-- <Section :items="items" /> -->
<Section filter="all" />
<All_new_section :currentPage="currentPage" @update="handleUpdate" />
<General_section filter="all" />
</div>
</div>
<div v-if="currentPage === 'setings'">
<div class="sm:flex">
<My_naw :currentPage="currentPage" @update="handleUpdate" />
<All_new_section :currentPage="currentPage" @update="handleUpdate" />
<Setings />
</div>
</div>
<div v-if="currentPage === 'status'">
<div class="sm:flex">
<My_naw :currentPage="currentPage" @update="handleUpdate" />
<Section filter="status" />
<All_new_section :currentPage="currentPage" @update="handleUpdate" />
<General_section filter="status" />
</div>
</div>
</template>