t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
44 lines (43 loc) • 832 B
JavaScript
import { isString as t, isNumber as l, isBoolean as o } from "../../_utils/index3.js";
const r = {
disabled: {
type: Boolean,
default: () => !1
},
modelValue: {
type: [String, Number, Boolean],
default: () => ""
},
vertical: {
type: Boolean,
default: () => !1
},
columnGap: {
type: [String, Number],
default: () => ""
},
rowGap: {
type: [String, Number],
default: () => ""
},
border: {
type: Boolean,
default: () => !1
},
size: {
type: String,
default: () => "middle",
validator: (e) => ["large", "middle", "small", "mini"].includes(e)
},
change: {
type: Function,
default: () => null
}
}, n = {
"update:modelValue": (e) => t(e) || l(e) || o(e)
}, u = Symbol("");
export {
n as Emits,
r as Props,
u as RadioGroupPropsKey
};