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.
22 lines
583 B
22 lines
583 B
<script lang="ts" setup> |
|
import type { ColumnType } from 'nocodb-sdk' |
|
import type { Ref } from 'vue' |
|
import { MetaInj, inject } from '#imports' |
|
|
|
interface Props { |
|
column?: Ref<ColumnType & { meta: any }> |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emit = defineEmits(['submit', 'cancel']) |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const column = toRef(props, 'column') |
|
useProvideColumnCreateStore(meta, column as Ref<ColumnType | undefined>) |
|
</script> |
|
|
|
<template> |
|
<SmartsheetColumnEditOrAdd @submit="emit('submit')" @cancel="emit('cancel')"></SmartsheetColumnEditOrAdd> |
|
</template>
|
|
|