我想知道如何将返回该函数的值传递给隐藏的输入,我尝试使用指令v-input但不起作用,如何找到解决方案? 这是计算函数:
computed:{
currentDate: function (){
this.date = moment().format("D-MM-YYYY");
return this.date;
}
多数民众赞成在视图:
<input type="hidden" name="customfield" class="form-control" v-model="fillProfile.customfield">
答案 0 :(得分:1)
如果您希望currentDate
是隐藏字段的值,则应这样绑定它:
<input type="hidden" name="customfield" class="form-control" :value="currentDate">
v-model
是双向绑定,隐藏的输入不是交互式的,因此没有必要使用它。