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.
23 lines
470 B
23 lines
470 B
10 months ago
|
<script setup lang="ts">
|
||
|
import { ActiveCellInj, EditModeInj, ReadonlyInj, provide, ref } from '#imports'
|
||
|
|
||
|
interface Props {
|
||
|
modelValue?: string | null
|
||
|
}
|
||
|
|
||
|
defineProps<Props>()
|
||
|
|
||
|
provide(ReadonlyInj, ref(true))
|
||
|
|
||
|
provide(EditModeInj, ref(true))
|
||
|
|
||
|
provide(ActiveCellInj, ref(true))
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="relative">
|
||
|
<LazyCellUser class="z-0" :model-value="modelValue" />
|
||
|
<div class="w-full h-full z-1 absolute top-0 left-0"></div>
|
||
|
</div>
|
||
|
</template>
|