ant design vue datepicker 日期返显问题

ant design vue开发做记录
这样直接设置值 会报

var birthday = '1949-10-01'
this.form.setFieldsValue({
                  'birth': birthday
                })
value.locale is not a function

原因是datepicker需要指定格式 需要引入moment插件

<script>
import moment from "moment"

this.form.setFieldsValue({
                  'birth': moment(birthday)
                })

就行了
在这里插入图片描述

你可能感兴趣的:(vue,js学习)