component.js 196 B

12345
  1. const TComponent = (options) => {
  2. options.options = Object.assign({ multipleSlots: true, addGlobalClass: true }, options.options);
  3. return Component(options);
  4. };
  5. export default TComponent;