hrms-mgt/src/modules/12_evaluatePersonal/components/Detail/step/step5.vue

27 lines
607 B
Vue
Raw Normal View History

<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>