mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 13:07:11 +00:00
* fix: get rid of barrel files * chore: get rid of explicit imports * fix: use explicit import for classes and enums * fix: use explicit import for enum & class & aliases * fix: build issues
16 lines
297 B
Vue
16 lines
297 B
Vue
<script lang="ts" setup>
|
|
const el = ref<HTMLElement>()
|
|
|
|
const cellClickHook = createEventHook()
|
|
|
|
provide(CellClickHookInj, cellClickHook)
|
|
|
|
provide(CurrentCellInj, el)
|
|
</script>
|
|
|
|
<template>
|
|
<td ref="el" class="select-none" @click="cellClickHook.trigger($event)">
|
|
<slot />
|
|
</td>
|
|
</template>
|