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的元素节点上添加样式,考虑以下代码
html
<div class="a b {{if e}} d{{/if}} c"> </div>
以及
<div class="a b c {{if e}} d{{/if}}"> </div>
class中最终的结果都是应用a b c d样式。
class
a b c d
但是2种写法产生的代码字节数是不一样的。
2
第一种会产生
let $class=`a b`; if(e)$class+=' d'; $class+=' c';
第二种会生产
let $class=`a b c`; if(e)$class+=' d';
我们可以看到第二种更少的字节数和更高的拼接效率
目前magix-composer无法智能的去纠正这个问题,但会抛出警告,提示开发者改变位置,向magix-composer提供更优的输入,以产出最少的代码字节输出。
magix-composer
不要把可变部分放在属性的中间
The text was updated successfully, but these errors were encountered:
No branches or pull requests
假设我们需要在
html
的元素节点上添加样式,考虑以下代码以及
class
中最终的结果都是应用a b c d
样式。但是
2
种写法产生的代码字节数是不一样的。第一种会产生
第二种会生产
我们可以看到第二种更少的字节数和更高的拼接效率
目前
magix-composer
无法智能的去纠正这个问题,但会抛出警告,提示开发者改变位置,向magix-composer
提供更优的输入,以产出最少的代码字节输出。不要把可变部分放在属性的中间
The text was updated successfully, but these errors were encountered: