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

1,678 阅读1分钟

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

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

<style lang="less" scoped>

</style>
<template>

div>a

</template>
<script>

</script>

tab不起作用

现已取消 .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"
}