element-plus
Version:
A Component Library for Vue 3
42 lines (37 loc) • 1.46 kB
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
var vue = require('vue');
require('../../../constants/index.js');
require('../../../hooks/index.js');
var checkTag = require('./check-tag.js');
var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
var index = require('../../../hooks/use-namespace/index.js');
var event = require('../../../constants/event.js');
const __default__ = vue.defineComponent({
name: "ElCheckTag"
});
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
...__default__,
props: checkTag.checkTagProps,
emits: checkTag.checkTagEmits,
setup(__props, { emit }) {
const props = __props;
const ns = index.useNamespace("check-tag");
const handleChange = () => {
const checked = !props.checked;
emit(event.CHANGE_EVENT, checked);
emit("update:checked", checked);
};
return (_ctx, _cache) => {
return vue.openBlock(), vue.createElementBlock("span", {
class: vue.normalizeClass([vue.unref(ns).b(), vue.unref(ns).is("checked", _ctx.checked)]),
onClick: handleChange
}, [
vue.renderSlot(_ctx.$slots, "default")
], 2);
};
}
});
var CheckTag = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/check-tag/src/check-tag.vue"]]);
exports["default"] = CheckTag;
//# sourceMappingURL=check-tag2.js.map
;