mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 14:46:39 +00:00
25 lines
469 B
Vue
25 lines
469 B
Vue
<script lang="ts" setup>
|
|
import { onBeforeUnmount, onMounted, ref, useSmartsheetStoreOrThrow } from '#imports'
|
|
|
|
const { cellRefs } = useSmartsheetStoreOrThrow()
|
|
|
|
const el = ref<HTMLTableDataCellElement>()
|
|
|
|
onMounted(() => {
|
|
cellRefs.value.push(el.value!)
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
const index = cellRefs.value.indexOf(el.value!)
|
|
if (index > -1) {
|
|
cellRefs.value.splice(index, 1)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<td ref="el">
|
|
<slot />
|
|
</td>
|
|
</template>
|