支持在 VS Code 中折叠 Vue 中的 Pug 块

Ste*_*ett 3 code-folding vue.js visual-studio-code pug vue-sfc

在 Vue 单文件组件中使用时,有没有办法让 VS Code 支持 Pug 中的折叠块?那是:

<template lang="pug"
...
</template>
Run Code Online (Sandbox Code Playgroud)

Ste*_*ett 8

根据此错误报告, VS Code 未执行此操作的事实似乎已与使用 Vetur 相关。

将其添加到 settings.json 修复了它:

    "[vue]": {
        "editor.foldingStrategy": "indentation",
    }
Run Code Online (Sandbox Code Playgroud)