UNPKG

@opensig/opendesign

Version:

<p align="center"><img src="../docs/public/opendesign-logo-light.png"/></p> <h1 align="center">opendesign</h1> <p align="center">一个 Vue 3 组件库</p> <p align="center"><b>皮肤可定制,使用 TypeScript</b></p>

16 lines (15 loc) 411 B
import { defineComponent } from "vue"; import { getFirstComponent } from "../_utils/vue-utils.mjs"; const OChildOnly = defineComponent({ name: "OChildOnly", setup(_props, { slots }) { return () => { var _a; const children = (_a = slots.default) == null ? void 0 : _a.call(slots); return children ? getFirstComponent(children) : null; }; } }); export { OChildOnly as default };