Fix tsc issues
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
2022-03-15 20:04:01 +00:00
parent eae196aa69
commit bfa67578cf
5 changed files with 12 additions and 10 deletions

View File

@@ -1,5 +1,7 @@
<script lang="ts" setup>
const props = defineProps<{modelValue : number | string}>();
const props = defineProps<{
modelValue?: number | string
}>();
const emits = defineEmits<{
(e: "update:modelValue", value: number | string): void