แกไข ชื่อ 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,22 @@
<script setup lang="ts">
import { ref } from "vue";
const status = ref<string>("WAIT_CHECK_DOC_V2");
</script>
<template>
<div class="row">
<div class="col-12 text-center">
<q-badge
v-if="status == 'WAIT_CHECK_DOC_V2'"
outline
color="orange-5"
label="รอพิจารณาผลการประเมิน"
class="q-pa-sm"
style="font-size: 16px"
/>
</div>
</div>
</template>
<style scoped></style>