JSX:包含点的元素的 Emmet 自动完成(例如 Grid.Column)?

JSX: Emmet auto-completion for elements that contain dots (E.g. Grid.Column)?

是否可以自动完成名称中包含点的元素? 例如,在 WebStorm 中,如果我键入 Grid [tab],我将按预期得到 <Grid></Grid>。但是,如果我输入 Grid.Column [tab],我会得到 <Grid className="Column"></Grid>.

是否可以转义 .,或者通过任何其他方式让 Emmet 将其识别为元素名称的一部分而不是类名 属性?

没有

来自 Emmet 的 Sergey(在发送电子邮件至 info@emmet.io 之后):

Hi, currently, there’s no special syntax that allows dots in tag name. Although it’s possible to implement some sort of escaping, generally it’s not a good idea since it may break abbreviation extractions from text content in some cases.