แก้ assess เป็น evaluate

This commit is contained in:
Warunee Tamkoo 2023-12-14 14:49:27 +07:00
parent 5f97ee9377
commit d71b2a172f
25 changed files with 83 additions and 75 deletions

View file

@ -0,0 +1,26 @@
<script setup lang="ts">
import { ref } from "vue";
const status = ref<string>("ANNOUNCE_WEB");
const website = ref<string>("https://bma-ehr.frappet.com/");
</script>
<template>
<div class="row">
<div class="col-12 text-center q-">
<q-badge
v-if="status == 'ANNOUNCE_WEB'"
outline
color="primary"
label="ประกาศบนเว็บไซต์"
class="q-pa-sm"
style="font-size: 16px"
/>
<div>
<a :href="website" target="_blank">{{ website }}</a>
</div>
</div>
</div>
</template>
<style scoped></style>