ngx-src
v1.0.0-pre.8
Published
Mobile web UI based on Angular and Weui
Downloads
9
Readme
Mobile web UI based on Angular and Weui
Demo
Usage
- install
npm i ngx-src --save
- use (x-input)
import { NgModule } from '@angular/core
import { XInputModule } from 'ngx-src/src/components/input'
@NgModule({
imports: [
XInputModule
],
bootstrap: [AppComponent]
})
export class AppModule { }
- For shared NgModule
import { NgModule } from '@angular/core
import { XInputModule } from 'ngx-src/src/components/input'
@NgModule({
imports: [
XInputModule
],
exports: [
XInputModule
]
})
export class SharedModule { }
- if you need all
import { NgModule } from '@angular/core
import { NGXModule } from 'ngx-src'
@NgModule({
imports: [
NGXModule
],
exports: [
NGXModule
]
})
export class SharedModule { }