We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
表单输入框一节中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 =}">
The text was updated successfully, but these errors were encountered:
已确认是文档更新遗漏的问题,马上处理。
Sorry, something went wrong.
No branches or pull requests
表单输入框一节中bind-value无法实现绑定,代码示例如下:
[但是看了下后面的内容,比如select一节, 你们想表达的意思似乎就是这种插值方法:
The text was updated successfully, but these errors were encountered: