diff --git a/packages/nc-gui-v2/components/smartsheet/Form.vue b/packages/nc-gui-v2/components/smartsheet/Form.vue index 7200c81725..a29b7f2069 100644 --- a/packages/nc-gui-v2/components/smartsheet/Form.vue +++ b/packages/nc-gui-v2/components/smartsheet/Form.vue @@ -5,6 +5,11 @@ import { MetaInj } from '~/context' const { isUIAllowed } = useUIPermission() +const formState = reactive({ + heading: 'TestForm1', + subheading: '', +}) + const isEditable = isUIAllowed('editFormView' as Permission) const meta = inject(MetaInj) @@ -16,10 +21,12 @@ const hiddenColumns = computed(() => []) function addAllColumns() {} function removeAllColumns() {} + +function updateView() {}