Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 606 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 606 Bytes

wym-ngdatepicker

  基于Angular6的日期选择组件

npm install wym-ngdatepicker

使用方式

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

import {DatePickerModule} from 'wym-ngdatepicker/dist';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    DatePickerModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
<wym-date-picker></wym-date-picker>