12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var vue = require('vue');
- var core = require('@vueuse/core');
- var constants = require('./constants.js');
- var tabPane = require('./tab-pane.js');
- var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
- var error = require('../../../utils/error.js');
- var index = require('../../../hooks/use-namespace/index.js');
- const COMPONENT_NAME = "ElTabPane";
- const __default__ = vue.defineComponent({
- name: COMPONENT_NAME
- });
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
- ...__default__,
- props: tabPane.tabPaneProps,
- setup(__props) {
- const props = __props;
- const instance = vue.getCurrentInstance();
- const slots = vue.useSlots();
- const tabsRoot = vue.inject(constants.tabsRootContextKey);
- if (!tabsRoot)
- error.throwError(COMPONENT_NAME, "usage: <el-tabs><el-tab-pane /></el-tabs/>");
- const ns = index.useNamespace("tab-pane");
- const index$1 = vue.ref();
- const isClosable = vue.computed(() => props.closable || tabsRoot.props.closable);
- const active = core.eagerComputed(() => {
- var _a;
- return tabsRoot.currentName.value === ((_a = props.name) != null ? _a : index$1.value);
- });
- const loaded = vue.ref(active.value);
- const paneName = vue.computed(() => {
- var _a;
- return (_a = props.name) != null ? _a : index$1.value;
- });
- const shouldBeRender = core.eagerComputed(() => !props.lazy || loaded.value || active.value);
- vue.watch(active, (val) => {
- if (val)
- loaded.value = true;
- });
- const pane = vue.reactive({
- uid: instance.uid,
- slots,
- props,
- paneName,
- active,
- index: index$1,
- isClosable
- });
- tabsRoot.registerPane(pane);
- vue.onMounted(() => {
- tabsRoot.sortPane(pane);
- });
- vue.onUnmounted(() => {
- tabsRoot.unregisterPane(pane.uid);
- });
- return (_ctx, _cache) => {
- return vue.unref(shouldBeRender) ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
- key: 0,
- id: `pane-${vue.unref(paneName)}`,
- class: vue.normalizeClass(vue.unref(ns).b()),
- role: "tabpanel",
- "aria-hidden": !vue.unref(active),
- "aria-labelledby": `tab-${vue.unref(paneName)}`
- }, [
- vue.renderSlot(_ctx.$slots, "default")
- ], 10, ["id", "aria-hidden", "aria-labelledby"])), [
- [vue.vShow, vue.unref(active)]
- ]) : vue.createCommentVNode("v-if", true);
- };
- }
- });
- var TabPane = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "tab-pane.vue"]]);
- exports["default"] = TabPane;
- //# sourceMappingURL=tab-pane2.js.map
|