summaryrefslogtreecommitdiff
path: root/packages/client/src/components
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-06-29 16:07:38 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-06-29 16:07:38 +0900
commitf997b7dff237bfd49e1e4dc8578a9b66bead6028 (patch)
tree5ba6ed9bd3714837845eb47e99375f728e28b65a /packages/client/src/components
parentperf(client): remove needless reactivity (diff)
downloadsharkey-f997b7dff237bfd49e1e4dc8578a9b66bead6028.tar.gz
sharkey-f997b7dff237bfd49e1e4dc8578a9b66bead6028.tar.bz2
sharkey-f997b7dff237bfd49e1e4dc8578a9b66bead6028.zip
chore(client): fix type def
Diffstat (limited to 'packages/client/src/components')
-rw-r--r--packages/client/src/components/form/split.vue4
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';