基于ng所见开发一个所见即所得框架!干货

项目地址

安装

yarn add iwe7-design

使用

import {Iwe7DesignModule} from 'iwe7-design';

imports: [
    ...
    Iwe7DesignModule.forRoot([])
]

<div class="container">
    <design-layout></design-layout>
</div>

开发自己组件

import {
  ElementRef
} from "@angular/core";
import { Iwe7DesignComponent, Iwe7DesignSettingComponent } from 'iwe7-design';

@Component({
  selector: "my-comp",
  template: `预览我的第一个组件`,
  styles: [``]
})
export class MyComp extends Iwe7DesignComponent{
    constructor(ele: ElementRef){
        super(ele)
    }
}
@Component({
  selector: "my-comp",
  template: `设置我的第一个组件`,
  styles: [``]
})
export class MyCompSetting Extends Iwe7DesignSettingComponent{
    constructor(ele: ElementRef){
        super(ele)
    }
}

添加到组件库

let design: Iwe7DesignConfig = {
  "my-comp": {
    title: "我的组件",
    name: "my-comp",
    show: true,
    setting: MyCompSetting,
    preview: MyComp,
    props: {
      name: "my-comp",
      style: {},
      class: {}
    }
  }
};

imports: [
    ...
    Iwe7DesignModule.forRoot([design])
]

总结

大NG实在强大, 一起来完善这个组件库吧!我最近会把微信小程序的一些组件加进来,欢迎关注!

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容