element-plus
Version:
A Component Library for Vue 3
23 lines (18 loc) • 545 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
require('../../../utils/index.js');
var props = require('../../../utils/vue/props.js');
var core = require('@vueuse/core');
const checkTagProps = props.buildProps({
checked: {
type: Boolean,
default: false
}
});
const checkTagEmits = {
"update:checked": (value) => core.isBoolean(value),
change: (value) => core.isBoolean(value)
};
exports.checkTagEmits = checkTagEmits;
exports.checkTagProps = checkTagProps;
//# sourceMappingURL=check-tag.js.map
;