various-ui
Version:
This is a test version of the Vue 3 component library
13 lines (11 loc) • 390 B
JavaScript
const UiRadioGroupPropsOption = {
modelValue: { type: String, required: true },
name: { type: String }
};
const UiRadioGroupEmits = {
"update:modelValue": (value) => true,
"change": () => true
};
const UiRadioGroupInjectionKey = Symbol("UiRadioGroupInjectionKey");
export { UiRadioGroupEmits, UiRadioGroupInjectionKey, UiRadioGroupPropsOption };
//# sourceMappingURL=index.mjs.map