有人可以告诉我如何让Autoform使用这个嵌套模式吗?
date: {
type: Number,
max: new Date().getFullYear(),
optional: true
},
"date.estimated": {
type: Boolean
},
我试过了
{{> afQuickField 'date.estimated'}}
没有快乐。
答案 0 :(得分:0)
我当时很蠢。
"date.year": {
type: Number,
max: new Date().getFullYear(),
optional: true
},
"date.estimated": {
type: Boolean
},