primevue-mirror/api-generator/components/inputswitch.js

17 lines
381 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const InputSwitchProps = [
{
name: "modelValue",
type: "boolean",
default: "null",
description: "Specifies whether a inputswitch should be checked or not."
}
];
module.exports = {
inputswitch: {
name: "InputSwitch",
description: "InputSwitch is used to select a boolean value.",
props: InputSwitchProps
}
};