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
HTML 标准中对 attribute 是大小写不敏感的。pwc 依赖的解析库也严格遵守规范实现,导致如果用户使用驼峰式命名传递 props:
<template> <child-component customProp="123"></child-component> </template>
customProp 会被解析为 customprop,不符合预期。
customProp
customprop
解法讨论:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HTML 标准中对 attribute 是大小写不敏感的。pwc 依赖的解析库也严格遵守规范实现,导致如果用户使用驼峰式命名传递 props:
customProp
会被解析为customprop
,不符合预期。解法讨论:
The text was updated successfully, but these errors were encountered: