bind-value无法实现输入框绑定
devtip opened this issue · 1 comments
devtip commented
表单输入框一节中bind-value无法实现绑定,代码示例如下:
var MyApp = san.defineComponent({
template: `
<div>
<input type="text" bind-value="name">
<p>{{= name =}}</p>
</div>`,
initData: function () {
return {
name: 'San'
}
}
});
var myApp = new MyApp();
myApp.attach(document.body);
[但是看了下后面的内容,比如select一节, 你们想表达的意思似乎就是这种插值方法:
<input type="text" value="{= name =}">
LeuisKen commented
已确认是文档更新遗漏的问题,马上处理。