默认情况下,当我使用属性展开html标记时,属性的值会被引号括起来。
e.g。 Route[component={Main}]
->
<Route component="{Main}"></Route>
然而,当我使用React时,我想要指定何时我希望扩展版本有引号。在我给出的示例中,我喜欢这种行为:
Route[component={Main}]
->
<Route component={Main}></Route>
这可以用Emmet-Vim吗?
答案 0 :(得分:1)
根据文件:
|g:user_emmet_settings| may be used to change attribute quote character
所以只需将其设置为空(在vimrc中):
let g:user_emmet_settings = {
\ 'html' : {
\ 'quote_char': ""
\ }
\}
有关详细信息,请参阅 3.4部分。引用Emmet-vim Documentation的字符 。
P.S。如果您使用 jsx ,只需将'html'
替换为'jsx'