mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
29 lines
410 B
Vue
29 lines
410 B
Vue
<template>
|
|
<div>
|
|
<div v-if="!disabled">
|
|
{{ comment.content }}
|
|
</div>
|
|
<div v-else>
|
|
{{ this.$t('comment.content.disabled-placeholder') }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
comment: {
|
|
type: Object,
|
|
default() {
|
|
return {}
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
disabled() {
|
|
return this.comment.disabled
|
|
}
|
|
}
|
|
}
|
|
</script>
|