mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-12 19:41:38 +00:00
14 lines
375 B
TypeScript
14 lines
375 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
/** @title Datepicker with min & max validation */
|
|
@Component({
|
|
selector : 'datepicker-min-max-example',
|
|
templateUrl: 'datepicker-min-max-example.html',
|
|
styleUrls : ['datepicker-min-max-example.css']
|
|
})
|
|
export class DatepickerMinMaxExample
|
|
{
|
|
minDate = new Date(2000, 0, 1);
|
|
maxDate = new Date(2020, 0, 1);
|
|
}
|