1.0.1 • Published 6 years ago

ngx-essentials-app v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Usage

  1. Install @premotec/ngx-essentials through npm package manager using the following command:

    npm i @premotec/ngx-essentials --save
  2. Add NgxSelectModule into your AppModule class. app.module.ts would look like this:

import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {AppComponent} from './app.component';
import { NgxEssentialsModule } from '@premotec/ngx-essentials/';

@NgModule({
    imports: [BrowserModule, NgxEssentialsModule.forRoot()],
    declarations: [AppComponent],
    bootstrap: [AppComponent],
})
export class AppModule {
}
  1. Include Bootstrap styles. For example add to your index.html

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">