diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-29 16:07:38 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-29 16:07:38 +0900 |
| commit | f997b7dff237bfd49e1e4dc8578a9b66bead6028 (patch) | |
| tree | 5ba6ed9bd3714837845eb47e99375f728e28b65a /packages/client/src | |
| parent | perf(client): remove needless reactivity (diff) | |
| download | sharkey-f997b7dff237bfd49e1e4dc8578a9b66bead6028.tar.gz sharkey-f997b7dff237bfd49e1e4dc8578a9b66bead6028.tar.bz2 sharkey-f997b7dff237bfd49e1e4dc8578a9b66bead6028.zip | |
chore(client): fix type def
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/components/form/split.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/components/form/split.vue b/packages/client/src/components/form/split.vue index 676b293967..301a8a84e5 100644 --- a/packages/client/src/components/form/split.vue +++ b/packages/client/src/components/form/split.vue @@ -6,9 +6,9 @@ <script lang="ts" setup> const props = withDefaults(defineProps<{ - minWidth: number; + minWidth?: number; }>(), { - minWidth: 210, + minWidth: 210, }); const minWidth = props.minWidth + 'px'; |