如图所示,我想点击按钮添加新的一行 其中刚发布时间是可编辑的Input框 看了文档 好像也没有解决方案 懵逼中 各位大佬有什么解决方案么?
1 回答
潇湘沐
TA贡献1816条经验 获得超6个赞
<el-table-column
label="创建时间"
width="180">
<template slot-scope="scope">
<el-date-picker v-if="editable"
v-model="value1"
type="date"
placeholder="选择日期">
</el-date-picker>
<span v-else>2018-04-12</span>
</template>
</el-table-column>
添加回答
举报
0/150
提交
取消