| 1234567891011121314151617181920212223242526272829303132333435 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var vue = require('vue');
- var rovingFocusGroupImpl = require('./roving-focus-group-impl.js');
- var rovingFocusGroup = require('./roving-focus-group.js');
- var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
- const _sfc_main = vue.defineComponent({
- name: "ElRovingFocusGroup",
- components: {
- ElFocusGroupCollection: rovingFocusGroup.ElCollection,
- ElRovingFocusGroupImpl: rovingFocusGroupImpl["default"]
- }
- });
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- const _component_el_roving_focus_group_impl = vue.resolveComponent("el-roving-focus-group-impl");
- const _component_el_focus_group_collection = vue.resolveComponent("el-focus-group-collection");
- return vue.openBlock(), vue.createBlock(_component_el_focus_group_collection, null, {
- default: vue.withCtx(() => [
- vue.createVNode(_component_el_roving_focus_group_impl, vue.normalizeProps(vue.guardReactiveProps(_ctx.$attrs)), {
- default: vue.withCtx(() => [
- vue.renderSlot(_ctx.$slots, "default")
- ]),
- _: 3
- }, 16)
- ]),
- _: 3
- });
- }
- var ElRovingFocusGroup = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["render", _sfc_render], ["__file", "roving-focus-group.vue"]]);
- exports["default"] = ElRovingFocusGroup;
- //# sourceMappingURL=roving-focus-group2.js.map
|