vscode中的vue文件中emmet进行tab键不起作用

发布于 2022-09-04 15:20:33 字数 225 浏览 16 评论 0

vscode中的vue文件中emmet进行tab键不起作用?vscode中已经安装了emmet插件。

<style lang="less" scoped>

</style>
<template>

div>a

</template>
<script>

</script>

tab不起作用

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

南…巷孤猫 2022-09-11 15:20:33

见:https://code.visualstudio.com...

现已取消 .vue 文件与 HTML 的默认关联,需要手动配置。

"emmet.syntaxProfiles": {
  "vue-html": "html",
  "vue": "html"
}

2017年9月21日 补充:

v1.15.1 之后需要这样设置:

"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
    "vue-html": "html",
    "vue": "html"
}
眼藏柔 2022-09-11 15:20:33

用JustGo的在自定义的settings.json不太行,
之后参考了github里面的issue,才可以
Emmet doesn't work in Vue <template> tag. #22585

"emmet.showAbbreviationSuggestions": true,
"emmet.showExpandedAbbreviation": "always",
"emmet.includeLanguages": {
        "vue-html": "html",
        "vue": "html"
}
嘿嘿嘿 2022-09-11 15:20:33
"emmet.triggerExpansionOnTab": true,
    "emmet.showAbbreviationSuggestions": true,
    "emmet.showExpandedAbbreviation": "always",
    "emmet.includeLanguages": {
        "vue-html": "html",
        "vue": "html"
    }

刚试了一下这个 可以了

自在安然 2022-09-11 15:20:33

vscode自带emmet,不知道题主的“已经装了”是什么意思……到全局设置找下emmet的设置吧,我记得有一项是可以添加支持的文件类型的。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文