UNPKG

element-plus

Version:

A Component Library for Vue 3

18 lines (15 loc) 426 B
import '../../../utils/index.mjs'; import { buildProps } from '../../../utils/vue/props.mjs'; import { isBoolean } from '@vueuse/core'; const checkTagProps = buildProps({ checked: { type: Boolean, default: false } }); const checkTagEmits = { "update:checked": (value) => isBoolean(value), change: (value) => isBoolean(value) }; export { checkTagEmits, checkTagProps }; //# sourceMappingURL=check-tag.mjs.map