欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用Angular Material组件打造页面

程序员文章站 2022-06-08 09:32:18
...

一.项目工程结构搭建

1.创建项目

  • 使用脚手架工具进行搭建
    ng new Enterprise --skin-install --style=scss
    
  • --skin-install表示跳过npm安装(因为很慢),或则使用-si
  • --style=scss表示期望样式风格是scss(使用Angular Material做主题支持,需要使用scss特性去做)
  • cnpm install使用cnpm进行安装
  • 使用ng g m core创建名为core的module模块,使用ng g m shared创建名为shared的共享模块

2.编写CoreModule

  • 编写CoreModule文件内容
    constructor(parent: CoreModule) {
        if(parent) {//如果已经存在了则抛出异常
            throw new Error("模块已经存在,不能再次加载");
        }
    }
    

未完待续…

相关标签: Angular Material