Files
FE_CPONE/test/vuex/one-fo-registration-dev/components/oneMouPxMouInfo.vue
2026-04-27 10:13:31 +07:00

23 lines
540 B
Vue

<template>
<v-card-text>
<div v-if="!mou.M_MouCompanyName">
Belum Ada MOU yang di pilih
</div>
<div v-if="mou.M_MouCompanyName">
MOU : {{mou.M_MouCompanyName}} <br/>
Start : {{mou.M_MouCompanyStartDate}} <br/>
End : {{mou.M_MouCompanyEndDate}} <br/>
Note : {{mou.M_MouCompanyNote}} <br/>
</div>
</v-card-text>
</template>
<script>
module.exports = {
computed : {
mou() {
return this.$store.state.company.selected_mou
}
}
}
</script>