mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 12:56:41 +00:00
12 lines
302 B
Vue
12 lines
302 B
Vue
<script lang="ts" setup>
|
|
import { type ColumnType, isVirtualCol } from 'nocodb-sdk'
|
|
defineProps<{
|
|
field: ColumnType
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<SmartsheetHeaderVirtualCellIcon v-if="isVirtualCol(field)" :column-meta="field" />
|
|
<SmartsheetHeaderCellIcon v-else :column-meta="field" />
|
|
</template>
|