Skip to content
Snippets Groups Projects
Commit f997b7df authored by syuilo's avatar syuilo
Browse files

chore(client): fix type def

parent a107dff4
No related branches found
No related tags found
No related merge requests found
......@@ -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';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment