美文网首页
我的VS Code 配置

我的VS Code 配置

作者: 点_ba7a | 来源:发表于2017-08-17 10:25 被阅读0次

尽可能保持极简 够用就行 支持Vue和微信


{

"workbench.iconTheme":"simple-icons",

"files.autoSave":"afterDelay",

// 下面是vue的配置,支持Vue格式文件

"emmet.syntaxProfiles": {

"vue-html":"html",

"vue":"html"

},

// 微信文件配置

"files.associations": {"*.wxml":"html","*.wxss":"css"},

// rem配置 配合remcss使用

"cssrem.rootFontSize":20,

// 缩进默认两格

"editor.tabSize":2

}

vue 用户代码段





"vue template": {

"",

"export default {",

"  data(){",

"    return{",

" ",

"      }",

"  },",

"  methods:{",

"",

"  },",

"  created(){",

"",

"  }",

"}",

"",

" ",

"",

" ",

""

],

"description":"vue template"

}

}

相关文章

  • VS Code Python运行环境配置

    安装python,VS CODE 然后,在VS CODE界面,打开“调试>>打开配置/添加配置” 其实就是配置la...

  • wsl 安装 Docker 与 Apollo

    准备工作 配置了 WSLg 安装 VS Code 在 VS Code 配置插件 Remote - WSL[http...

  • VS Code 运行html文件

    用VS Code编写html文件,想在VS Code中直接打开运行,配置如下: 配置tasks.json 打开VS...

  • VScode运行HTML文件

    用VS Code编写html文件,想在VS Code中直接打开运行,配置如下: 配置tasks.json 打开VS...

  • vscode+phpstudy2018构建php调试环境

    由于vs code开源和跨平台,而且插件很多,所以打算以后编写和调试php都用vs code。 配置vs code...

  • 2020-04-26

    VS Code的安装与配置 Visual Studio Code(VS Code)是微软旗下的一个开源文本编辑器,...

  • Python+VS Code

    参考知乎配置 一、准备 安装Python3 安装VS Code 二、配置VS Code 1. flake8和yap...

  • MAC+VS Code+Python+Markdown调试配置

    MAC+VS Code+Python+Markdown调试配置 最近,初初阶程序小白——澜子迷上了VS Code的...

  • Flutter总结,持续更新

    起步 安装 配置编辑器VS Code

  • Vue笔记

    Vue笔记 一:环境配置开发工具使用VS Code,Window使用nvm安装管理node版本。VS Code安装...

网友评论

      本文标题:我的VS Code 配置

      本文链接:https://www.haomeiwen.com/subject/wgsgrxtx.html