WebStorm Emmet 创建 <Single /> 标签而不是打开和关闭标签

WebStorm Emmet creates <Single /> tag rather than opening and closing tabs

我刚刚重新安装了 WebStorm,之前在 JSX 字段中按 Tab 键时创建了打开和关闭标签,但现在只创建了一个自封闭标签。

JSX 的 Emmet 设置仅显示 on/off 切换。我该如何解决这个问题?

之前:

tab + Component = <Component></Component>

目前:

tab + Component = <Component/>

根据用户要求于 2017.1.2 实施:WEB-25937 and WEB-24502.

cannot disable WebStorm 2017.1.2 或更高版本中的此新行为。

https://youtrack.jetbrains.com/issue/WEB-26468 -- 观看这张票 (star/vote/comment) 以获得任何进展的通知。


更新 2020-09-28:

前面提到的WEB-26468 ticket has been implemented since 2017.2.2 version.

当前行为是:

View => <View></View>

View/ => <View/>

我遇到了同样的问题。我正在使用 Webstorm 2018.3.

我用的是第一种方法,但后来我发现你可以用第二种方法:

<Co + (Tab or Enter) = <Component/>
Component + Tab = <Component></Component>