储能智慧云小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

component.js 196B

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;