Files
nocodb/packages/nc-gui/components/cell/Text/Readonly.vue
2025-01-28 13:18:35 +00:00

19 lines
353 B
Vue

<script lang="ts" setup>
interface Props {
modelValue?: string | number | null
}
defineProps<Props>()
const rowHeight = inject(RowHeightInj, ref(undefined))
</script>
<template>
<LazyCellClampedText
class="nc-cell-field clamped-text"
:value="modelValue"
:lines="rowHeight"
:style="{ 'word-break': 'break-word' }"
/>
</template>