Skip to content

Commit

Permalink
define props in SeqvarVariantValidatorCard
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Sep 24, 2024
1 parent e9d07ff commit 2fbdd2d
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ enum VariantValidatorStates {
Error = 3
}
interface Props {
seqvar?: Seqvar
}
const props = defineProps<Props>()
/** This component's props. */
const props = withDefaults(
defineProps<{
seqvar?: Seqvar
}>(),
{
seqvar: undefined
}
)
/** This component's emits. */
const emit = defineEmits<{
Expand Down

0 comments on commit 2fbdd2d

Please sign in to comment.