mirror of https://github.com/nocodb/nocodb
Pranav C
11 months ago
3 changed files with 19 additions and 1 deletions
@ -0,0 +1,15 @@ |
|||||||
|
<script setup lang="ts"> |
||||||
|
import { ReadonlyInj, provide, ref } from '#imports' |
||||||
|
|
||||||
|
interface Props { |
||||||
|
modelValue?: string | null |
||||||
|
} |
||||||
|
|
||||||
|
defineProps<Props>() |
||||||
|
|
||||||
|
provide(ReadonlyInj, ref(true)) |
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<CellDateTimePicker :model-value="modelValue" :is-pk="false" /> |
||||||
|
</template> |
Loading…
Reference in new issue