mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 10:07:42 +00:00
15 lines
257 B
Vue
15 lines
257 B
Vue
<script lang="ts" setup>
|
|
import type { ViewSettingOverrideOptions, ViewType } from 'nocodb-sdk'
|
|
|
|
interface Props {
|
|
view: ViewType
|
|
defaultOptions?: ViewSettingOverrideOptions[]
|
|
}
|
|
|
|
defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|