hrms-user/src/modules/06_evaluate/components/step/step4.vue

20 lines
432 B
Vue

<script setup lang="ts">
import { ref } from "vue";
const status = ref<string>("WAIT_CHECK_DOC_V1");
</script>
<template>
<div class="col-12 row justify-center">
<q-badge
v-if="status == 'WAIT_CHECK_DOC_V1'"
outline
color="orange-5"
label="รอตรวจสอบคุณสมบัติ"
class="q-pa-sm"
style="font-size: 16px"
/>
</div>
</template>
<style scoped></style>