1.Go to Code → Preferences → User Snippetsjavascript
2.弹出提示框,选择一个vue代码高亮插件,好比vue.jscss
3.VSCode会建立一个vue.json,开始自定义vue
* vue.json * { "New File": { "prefix": "template", "body": [ "<template>", "\t<div class='${name}'></div>", "</template>", "", "<script>", "\texport default {", "\t\tname: '${name}'", "\t}", "</script>", "", "<style lang='sass'>", "\t.${name} {", "", "\t}", "</style>" ] } }
使用效果:java
1.Go to Code → Preferences → User Snippetstypescript
2.选择新建全局snippets filejson
3.VSCode会生成./vscode/px2rem.code-snippets,开始自定义sass
{ // Place your giftmall_app workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. // Placeholders with the same ids are connected. // Example: // "Print to console": { // "scope": "javascript,typescript", // "prefix": "log", // "body": [ // "console.log('$1');", // "$2" // ], // "description": "Log output to console" // } "px2rem": { "scope": "javascript,typescript,scss", "prefix": "prm", "body": [ "pxToRem($1)" ], "description": "px to rem" } }
4.在<style lang=“scss scoped>
中输入prm,就能够看到补全提示prm -> px2rem(参数值)
app
这里只是一个简单介绍,能够在平时工做中,去多多实践,减小一些无心义的体力活。函数