mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 03:46:53 +00:00
20 lines
415 B
Vue
20 lines
415 B
Vue
<script lang="ts" setup>
|
|
import { CellClickHookInj, CurrentCellInj, createEventHook, ref } from '#imports'
|
|
|
|
const el = ref<HTMLTableDataCellElement>()
|
|
|
|
const cellClickHook = createEventHook()
|
|
|
|
provide(CellClickHookInj, cellClickHook)
|
|
|
|
provide(CurrentCellInj, el)
|
|
|
|
defineExpose({ el })
|
|
</script>
|
|
|
|
<template>
|
|
<td ref="el" class="select-none" @click="cellClickHook.trigger($event)">
|
|
<slot />
|
|
</td>
|
|
</template>
|