
* wip * wip * wip * wip * wip * wip * wip * #5 - bump dependencies * #43 - wip * #43 - add composer script * #43 - fix * #43 - fix * #43 - wip * #43 - ecs fix * #43 - cr fix * #43 - cr fix * #43 - fix * #62 - wip * #62 - wip * #62 - wip * #62 - fix * #62 - fix * #62 - fix * #62 - fix * #62 - fix * #62 - ecs fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
38 lines
694 B
Vue
38 lines
694 B
Vue
<template>
|
|
<div class="flex items-center">
|
|
<component
|
|
:is="statusInfo.solid.icon"
|
|
:class="[statusInfo.solid.color ,'w-5 h-5 mr-1']"
|
|
/>
|
|
<span>{{ statusInfo.text }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {computed} from 'vue'
|
|
import {useStatusInfo} from '@/Composables/statusInfo'
|
|
|
|
export default {
|
|
name: 'VacationRequestStatus',
|
|
props: {
|
|
status: {
|
|
type: String,
|
|
default: () => null,
|
|
},
|
|
last: {
|
|
type: Boolean,
|
|
default: () => false,
|
|
},
|
|
},
|
|
setup(props) {
|
|
const { findStatus } = useStatusInfo()
|
|
|
|
const statusInfo = computed(() => findStatus(props.status))
|
|
|
|
return {
|
|
statusInfo,
|
|
}
|
|
},
|
|
}
|
|
</script>
|