25 lines
530 B
Vue
25 lines
530 B
Vue
<script setup>
|
|
import {computed} from "vue";
|
|
import {NTag} from 'naive-ui'
|
|
|
|
const props = defineProps({
|
|
urgencyId: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
})
|
|
|
|
const typeForUrgency = computed(() => props.urgencyId === 1 ? 'success' : 'error')
|
|
const textForUrgency = computed(() => props.urgencyId === 1 ? 'Планово' : 'Экстренно')
|
|
</script>
|
|
|
|
<template>
|
|
<NTag :type="typeForUrgency" round :bordered="false" size="small">
|
|
{{ textForUrgency }}
|
|
</NTag>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|