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
如何复现:
跟依赖的 prettyHtml 有关,这个 Prettyhtml/prettyhtml#53 改变了这个特性,但在小程序里不太合适。 有这么一个组件,接收 title 这个props 来显示标题
<Modal title="" content="{{x}}" />
格式化之后:
<Modal title content="{{x}}" />
这样值就变成了 boolean 的 true了
boolean
true
...
期望的表现:
<Modal title="" content... /> 或 <Modal title="{{''}}" content... />
<Modal title="" content... />
<Modal title="{{''}}" content... />
实际的表现:
插件运行环境
插件版本
VSCode版本
操作系统(非必须)
The text was updated successfully, but these errors were encountered:
iChenLei
No branches or pull requests
如何复现:
跟依赖的 prettyHtml 有关,这个 Prettyhtml/prettyhtml#53 改变了这个特性,但在小程序里不太合适。
有这么一个组件,接收 title 这个props 来显示标题
格式化之后:
这样值就变成了
boolean
的true
了...
期望的表现:
<Modal title="" content... />
或
<Modal title="{{''}}" content... />
实际的表现:
插件运行环境
插件版本
: v2.4.12VSCode版本
: 1.80.0操作系统(非必须)
:The text was updated successfully, but these errors were encountered: