ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
14 lines (13 loc) • 349 B
JavaScript
import { defineComponent } from 'vue';
export default defineComponent({
name: 'Portal',
inheritAttrs: false,
props: ['getContainer'],
setup: function setup(_props, _ref) {
var slots = _ref.slots;
return function () {
var _a;
return (_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots);
};
}
});