elementUI :Cannot read property 'getHours' of undefined

DateTimePicker 日期时间选择器报错:Cannot read property ‘getHours’ of undefined

方法一:(需要默认值时)
场景(type是datetime):例

  
          
          
        
....
pointEnd:"2019-03-22"

上面这种就会报错,改pointEnd:"2019-03-22 00:00:00"后,依然还是有错,这时候给加属性表明你的时间格式:
value-format="yyyy-MM-dd HH:mm:ss"

  
          
          
        
        ....
pointEnd:"2019-03-22 00:00:00"

这样问题解决。
方法一:(没有默认时间,不需)

  
          
          
        
....
pointEnd:null

直接给初始值null,也可解决

你可能感兴趣的:(elementUI)