码迷,mamicode.com
首页 > 其他好文 > 详细

vscode 用户代码片段 vue初始化模板 Snippet #新加入开头注释 自动生成文件名 开发日期时间等内容

时间:2019-02-02 19:05:37      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:--   each   fine   scope   export   初始化   trigger   模板变量   date   

vue文件模板

模板变量

https://code.visualstudio.com/docs/editor/userdefinedsnippets#_variables

vue.json

{
  // Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and 
  // description. 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": {
  //     "prefix": "log",
  //     "body": [
  //         "console.log(‘$1‘);",
  //         "$2"
  //     ],
  //     "description": "Log output to console"
  // }

  "vue": {
    "prefix": "vue",
    "body": [
      "<!--",
      "* @description $1",
      "* @fileName $TM_FILENAME",
      "* @author 彭成刚",
      "* @date $CURRENT_YEAR/$CURRENT_MONTH/$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND",
      "* @version V1.0.0",
      "!-->",
      "<template>",
      "  <div>$0</div>",
      "</template>",
      "",
      "<script>",
      "export default {",
      "  data () {",
      "    return {",
      "    }",
      "  },",
      "",
      "  components: {},",
      "",
      "  computed: {},",
      "",
      "  //mounted: {},",
      "",
      "  methods: {}",
      "}",
      "",
      "</script>",
      "<style lang=‘less‘ scoped>",
      "</style>"
    ],
    "description": "vue初始化页面"
  }

}

 

vscode 用户代码片段 vue初始化模板 Snippet #新加入开头注释 自动生成文件名 开发日期时间等内容

标签:--   each   fine   scope   export   初始化   trigger   模板变量   date   

原文地址:https://www.cnblogs.com/pengchenggang/p/10348748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!