我的VS Code 配置

尽可能保持极简 够用就行 支持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 配置)