t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
30 lines (29 loc) • 538 B
JavaScript
import { isString as t, isNumber as o, isBoolean as l } from "../../_utils/index3.js";
const n = {
disabled: {
type: Boolean,
default: () => !1
},
modelValue: {
type: [String, Number, Boolean],
default: () => ""
},
name: {
type: String,
default: () => "f-radio"
},
label: {
type: [String, Number, Boolean],
default: () => ""
},
change: {
type: Function,
default: () => null
}
}, r = {
"update:modelValue": (e) => t(e) || o(e) || l(e)
};
export {
r as Emits,
n as Props
};