在ng-pick-datetime上没有任何活动
import myprop from '@/viz/d3chart.js'
...
data() {
return {
myprop: new myprop()
}
}
我也导入了所需的模块:
<label class="fieldlabel">{{ attribute.attribute.displayName }}: </label>
<label>
<mat-form-field class="field-full-width">
<input [owlDateTimeTrigger]="datePicker" placeholder="Date" [owlDateTime]="datePicker"
[dateTimeInput]="emitValue()" [(ngModel)]="value.value">
<owl-date-time #datePicker></owl-date-time>
</mat-form-field>
</label>
https://www.npmjs.com/package/ng-pick-datetime
对于其他事件,我也有相同的错误:import { OwlDateTimeModule, OwlNativeDateTimeModule } from 'ng-pick-datetime';
,
afterPickerOpen
,yearSelected
,monthSelected
答案 0 :(得分:5)
dateTimeInput
是输出(事件)而不是输入。因此,您需要使用()
而不是[]
。
(dateTimeInput)="emitValue()"
有关输出的更多信息,请阅读官方Angular docs。