mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 05:37:00 +00:00
14 lines
212 B
Vue
14 lines
212 B
Vue
<script lang="ts" setup>
|
|
import { CurrentCellInj, ref } from '#imports'
|
|
|
|
const el = ref()
|
|
|
|
provide(CurrentCellInj, el)
|
|
</script>
|
|
|
|
<template>
|
|
<div ref="el" class="select-none">
|
|
<slot />
|
|
</div>
|
|
</template>
|