แกไข ชื่อ file

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-12-14 13:09:33 +07:00
parent 6269464231
commit 6f5a408f9e
52 changed files with 132 additions and 64 deletions

View file

@ -0,0 +1,34 @@
<script setup lang="ts">
import ViewPDF from "@/modules/06_assess/components/viewstep/viewPDF.vue";
import { useAssessStore } from "@/modules/06_assess/store";
const store = useAssessStore();
</script>
<template>
<q-tab-panels v-model="store.tabPanels" animated swipeable vertical>
<q-tab-panel name="1">
<ViewPDF />
</q-tab-panel>
<q-tab-panel name="2">
<ViewPDF />
</q-tab-panel>
<q-tab-panel name="3">
<ViewPDF />
</q-tab-panel>
<q-tab-panel name="4">
<ViewPDF />
</q-tab-panel>
<q-tab-panel name="5">
<ViewPDF />
</q-tab-panel>
<q-tab-panel name="6">
<ViewPDF />
</q-tab-panel>
</q-tab-panels>
</template>
<style scoped></style>