| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import { defineComponent, computed, openBlock, createBlock, resolveDynamicComponent, mergeProps, unref, withCtx, createElementBlock, Fragment, renderSlot, normalizeClass, createCommentVNode } from 'vue';
- import { ElIcon } from '../../icon/index.mjs';
- import { useButton } from './use-button.mjs';
- import { buttonProps, buttonEmits } from './button2.mjs';
- import { useButtonCustomStyle } from './button-custom.mjs';
- import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
- import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
- const __default__ = defineComponent({
- name: "ElButton"
- });
- const _sfc_main = /* @__PURE__ */ defineComponent({
- ...__default__,
- props: buttonProps,
- emits: buttonEmits,
- setup(__props, { expose, emit }) {
- const props = __props;
- const buttonStyle = useButtonCustomStyle(props);
- const ns = useNamespace("button");
- const {
- _ref,
- _size,
- _type,
- _disabled,
- _props,
- _plain,
- _round,
- _text,
- shouldAddSpace,
- handleClick
- } = useButton(props, emit);
- const buttonKls = computed(() => [
- ns.b(),
- ns.m(_type.value),
- ns.m(_size.value),
- ns.is("disabled", _disabled.value),
- ns.is("loading", props.loading),
- ns.is("plain", _plain.value),
- ns.is("round", _round.value),
- ns.is("circle", props.circle),
- ns.is("text", _text.value),
- ns.is("link", props.link),
- ns.is("has-bg", props.bg)
- ]);
- expose({
- ref: _ref,
- size: _size,
- type: _type,
- disabled: _disabled,
- shouldAddSpace
- });
- return (_ctx, _cache) => {
- return openBlock(), createBlock(resolveDynamicComponent(_ctx.tag), mergeProps({
- ref_key: "_ref",
- ref: _ref
- }, unref(_props), {
- class: unref(buttonKls),
- style: unref(buttonStyle),
- onClick: unref(handleClick)
- }), {
- default: withCtx(() => [
- _ctx.loading ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
- _ctx.$slots.loading ? renderSlot(_ctx.$slots, "loading", { key: 0 }) : (openBlock(), createBlock(unref(ElIcon), {
- key: 1,
- class: normalizeClass(unref(ns).is("loading"))
- }, {
- default: withCtx(() => [
- (openBlock(), createBlock(resolveDynamicComponent(_ctx.loadingIcon)))
- ]),
- _: 1
- }, 8, ["class"]))
- ], 64)) : _ctx.icon || _ctx.$slots.icon ? (openBlock(), createBlock(unref(ElIcon), { key: 1 }, {
- default: withCtx(() => [
- _ctx.icon ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.icon), { key: 0 })) : renderSlot(_ctx.$slots, "icon", { key: 1 })
- ]),
- _: 3
- })) : createCommentVNode("v-if", true),
- _ctx.$slots.default ? (openBlock(), createElementBlock("span", {
- key: 2,
- class: normalizeClass({ [unref(ns).em("text", "expand")]: unref(shouldAddSpace) })
- }, [
- renderSlot(_ctx.$slots, "default")
- ], 2)) : createCommentVNode("v-if", true)
- ]),
- _: 3
- }, 16, ["class", "style", "onClick"]);
- };
- }
- });
- var Button = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "button.vue"]]);
- export { Button as default };
- //# sourceMappingURL=button.mjs.map
|