index.js 281 B

12345678910
  1. import { createVNode as _createVNode } from "vue";
  2. function Panel(_, _ref) {
  3. let {
  4. slots
  5. } = _ref;
  6. var _a;
  7. return _createVNode("div", null, [(_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)]);
  8. }
  9. Panel.displayName = 'Panel';
  10. export default Panel;