我的VS Code 配置

2017-08-17  本文已影响0人  点_ba7a

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

}

}

上一篇 下一篇

猜你喜欢

热点阅读