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