26 lines
1.3 KiB
JavaScript
26 lines
1.3 KiB
JavaScript
import _sfc_main from './dropdown-menu.vue2.mjs';
|
|
import { createElementBlock, openBlock, withModifiers, normalizeStyle, normalizeClass, renderSlot } from 'vue';
|
|
import _export_sfc from '../../../_virtual/_plugin-vue_export-helper.mjs';
|
|
|
|
const _hoisted_1 = ["role", "aria-labelledby"];
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
return openBlock(), createElementBlock("ul", {
|
|
ref: _ctx.dropdownListWrapperRef,
|
|
class: normalizeClass(_ctx.dropdownKls),
|
|
style: normalizeStyle(_ctx.rovingFocusGroupRootStyle),
|
|
tabindex: -1,
|
|
role: _ctx.role,
|
|
"aria-labelledby": _ctx.triggerId,
|
|
onFocusin: _cache[0] || (_cache[0] = (...args) => _ctx.handleFocus && _ctx.handleFocus(...args)),
|
|
onFocusout: _cache[1] || (_cache[1] = (...args) => _ctx.onBlur && _ctx.onBlur(...args)),
|
|
onKeydown: _cache[2] || (_cache[2] = withModifiers((...args) => _ctx.handleKeydown && _ctx.handleKeydown(...args), ["self"])),
|
|
onMousedown: _cache[3] || (_cache[3] = withModifiers((...args) => _ctx.onMousedown && _ctx.onMousedown(...args), ["self"]))
|
|
}, [
|
|
renderSlot(_ctx.$slots, "default")
|
|
], 46, _hoisted_1);
|
|
}
|
|
var DropdownMenu = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
|
|
export { DropdownMenu as default };
|
|
//# sourceMappingURL=dropdown-menu.vue.mjs.map
|