@ctsy/layui-vue
Version:
a component library for Vue 3 base on layui-vue
17 lines (16 loc) • 617 B
JavaScript
import { openBlock, createElementBlock, renderSlot } from "vue";
import { _ as _export_sfc } from "../plugin-vue_export-helper.js";
const _sfc_main = {
name: "LayDropdownMenu"
};
const _hoisted_1 = { class: "layui-menu layui-dropdown-menu" };
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("ul", _hoisted_1, [
renderSlot(_ctx.$slots, "default")
]);
}
var Component = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
Component.install = (app) => {
app.component(Component.name, Component);
};
export { Component as default };