| 1234567891011121314151617181920 |
- import { buildProps } from '../../../utils/vue/props/runtime.mjs';
- import { isBoolean } from '../../../utils/types.mjs';
- import { CHANGE_EVENT } from '../../../constants/event.mjs';
- const checkTagProps = buildProps({
- checked: Boolean,
- disabled: Boolean,
- type: {
- type: String,
- values: ["primary", "success", "info", "warning", "danger"],
- default: "primary"
- }
- });
- const checkTagEmits = {
- "update:checked": (value) => isBoolean(value),
- [CHANGE_EVENT]: (value) => isBoolean(value)
- };
- export { checkTagEmits, checkTagProps };
- //# sourceMappingURL=check-tag.mjs.map
|