VS Code 用户代码片段

文件—首选项—用户代码片段

{
 // 文档注释
 "Documentation Comments": {
  "scope": "javascript,typescript,html,vue",
  "prefix": "lv-cia",
  "body": [
   "/**",
   " * ${1:描述}",
   " @author will",
   " @time ${2:time}",
   " */",
   "$0"
  ],
  "description": "文档注释"
 },

 // html viewport
 "Html viewport": {
  "scope": "html",
  "prefix": "metavp",
  "body": [
   ""
  ],
  "description": "html viewport"
 },

 // vue 单文件模板
 "Create a template": {
  "scope": "vue",
  "prefix": "vuec",
  "body": [
   "",
   "",
   "",
   "",
   "",
  ],
  "description": "vue 单文件模板"
 }
}

你可能感兴趣的:(VS Code 用户代码片段)