mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
469 B
25 lines
469 B
2 years ago
|
<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>
|