chore(client): fix type def

This commit is contained in:
syuilo 2022-06-29 16:07:38 +09:00 committed by Johann150
parent 761d5347d2
commit b361069610
Signed by: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -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';