fix: wrong element used

This commit is contained in:
Methapon Metanipat 2024-09-30 13:25:29 +07:00
parent 308e7d40f3
commit 81580fdb5c
2 changed files with 6 additions and 6 deletions

View file

@ -535,7 +535,7 @@ onMounted(async () => {
</q-tabs>
</nav>
<!-- SEC: body content -->
<body
<article
v-if="true"
class="col surface-2 flex items-center justify-center"
>
@ -544,8 +544,8 @@ onMounted(async () => {
label="general.add"
:i18n-args="{ text: $t('quotation.title') }"
/>
</body>
<body v-else class="col q-pa-md surface-2 scroll">
</article>
<article v-else class="col q-pa-md surface-2 scroll">
<div class="row q-col-gutter-md">
<div v-for="n in 5" :key="n" class="col-md-4 col-12">
<QuotationCard
@ -570,7 +570,7 @@ onMounted(async () => {
/>
</div>
</div>
</body>
</article>
<!-- SEC: footer content -->
<footer

View file

@ -293,7 +293,7 @@ watch(
})
}}
</span>
<body v-else class="col column no-wrap">
<article v-else class="col column no-wrap">
<q-tabs
inline-label
mobile-arrows
@ -380,7 +380,7 @@ watch(
</aside>
</span>
</div>
</body>
</article>
</section>
</template>
</q-splitter>