добавление выгрузки
This commit is contained in:
15
src/App.vue
15
src/App.vue
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user