Chrysalis-ng
Chrysalis-ng是angular4的UI框架,用来学习angular4,仅供学习参考。
- Angular 4 angular.io
- Bootstrap bootstrap
- GitHub repository https://github.com/zChanges/chrysalis-ng ( If it helps you, give it a star )
Installation
In terminal:
npm install chrysalis-ng --save
Use
// AppModule
import { NgModule } from '@angular/core';
import { ChrysalisNgModule } from 'chrysalis-ng';
@NgModule({
declarations: [AppComponent],
imports: [ BrowserModule, ChrysalisNgModule],
bootstrap: [AppComponent]
})
export class AppModule { }