我正在尝试使用ion-range-slider在角度实现一个简单的日期范围滑块
这是html
<ion-range-slider #sliderElement
type="double"
[min]="myMinVar"
[max]="myMaxVar"></ion-range-slider>
组件.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
myMinVar:Date;
myMaxVar:Date;
constructor() { }
ngOnInit() {
this.myMaxVar = new Date(2018,2,2);
this.myMinVar = new Date(2012,2,2);
}
}
当我尝试更改范围时,我得到了 NAN
任何人都可以让我知道如何解决上述问题 或者我可以在角度中使用任何其他第三方日期范围滑块吗?