<template v-if="scope.row.edit"> <el-date-picker class="stra-date-picker" size="small" v-model="scope.row.publish_time" type="date" placeholder="請選擇日期"> </el-date-picker> </template> <span v-else class="db ell" :title="scope.row.publish_time">{{ scope.row.publish_time }}</span>
選擇日期的時候格式並無問題,以下:web
因爲在官方文檔中,有提到能夠使用changebash
<el-date-picker type="date" v-model="time" @change="formatTime" format="yyyy-MM-dd" placeholder="請選擇日期"></el-date-picker>
而後在methods中,添加一個方法便可,代碼以下:ui
formatTime(val) { this.time=val; }
這個方法是直接將v-model裏面的值改變,但因爲個人項目日期裏面v-model的值,是整個動態循環綁定的,不能知道當前的time值,因此可用下面的方法2this
代碼以下:spa
<template v-if="scope.row.edit"> <el-date-picker class="stra-date-picker" size="small" v-model="scope.row.publish_time" type="date" value-format="yyyy-MM-dd" placeholder="請選擇日期"> </el-date-picker> </template> <span v-else class="db ell" :title="scope.row.publish_time">{{ scope.row.publish_time }}</span>
效果以下:code