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
因为小程序接口修改,导致文本无法复制,建议修改 文档见:https://developers.weixin.qq.com/miniprogram/dev/component/text.html
selectable | boolean | false | 否 | 文本是否可选 (已废弃) | 1.1.0 user-select | boolean | false | 否 | 文本是否可选,该属性会使文本节点显示为 inline-block | 2.12.1
建议将: <text selectable="true">{{item.text}}</text></block> 修改为
<text selectable="true">{{item.text}}</text></block>
<text selectable="true" user-select="true">{{item.text}}</text></block>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
因为小程序接口修改,导致文本无法复制,建议修改
文档见:https://developers.weixin.qq.com/miniprogram/dev/component/text.html
selectable | boolean | false | 否 | 文本是否可选 (已废弃) | 1.1.0
user-select | boolean | false | 否 | 文本是否可选,该属性会使文本节点显示为 inline-block | 2.12.1
建议将:
<text selectable="true">{{item.text}}</text></block>
修改为
<text selectable="true" user-select="true">{{item.text}}</text></block>
The text was updated successfully, but these errors were encountered: