I used a custom column in a table build using element ui. The fields are successfully bound. The code is as follows
<el-table-column label="" align="center" sortable width="100">
<template slot-scope="scope">
{{ dateFormat(scope.row.profile.birthday,"yyyy-MM-dd" ) }}
</template>
</el-table-column>
but the following error occurs
There is no problem with the
function, because other times can be displayed normally and converted successfully. This error occurs only in the time of this profile object. Under what circumstances is it caused? Thank you for your answer