mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
Declare null as valid value type for v-radio (#17879)
This commit is contained in:
@@ -19,7 +19,7 @@ import { computed } from 'vue';
|
||||
|
||||
interface Props {
|
||||
/** What value to represent when selected */
|
||||
value: string | number;
|
||||
value: string | number | null;
|
||||
/** If `value` and `modelValue` match, the radio is selected */
|
||||
modelValue?: string | number | null;
|
||||
/** Label to render next to the radio */
|
||||
|
||||
Reference in New Issue
Block a user