mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 09:36:49 +00:00
14 lines
218 B
Vue
14 lines
218 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
tableId: string
|
|
permissionsFieldWrapperClass?: string
|
|
permissionsTableWrapperClass?: string
|
|
}
|
|
|
|
defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|