zoukankan      html  css  js  c++  java
  • vscode创建vue快捷键

    安装Vetur插件

     code-首选下-用户代码片段-新建全局代码片段-在输入框中新建名称为vue.json

    删除json文件内容,把下面的内容复制粘贴上

    
    
    {
        "Print to console": {
         "prefix": "vue",
         "body": [
            "<!-- $0 -->",
            "<template>",
            " <div></div>",
            "</template>",
            "",
            "<script>",
             "export default {",
             " data () {",
             " return {",
             " }",
             " },",
             " components:{",
             " }",
             "}",
             "",
            "</script>",
            "",
            "<style lang='scss' scoped>",
            "",
            "</style>",
            ""
         ],
         "description": "Log output to console"
        }
    }
     

    在页面中输入vue按tab键就出来了

  • 相关阅读:
    第八章
    第十章
    第九章
    第七章
    第六章
    第五章
    第四章心得
    第二章心得
    第三章心得
    第一章心得
  • 原文地址:https://www.cnblogs.com/liuXiaoDi/p/12990834.html
Copyright © 2011-2022 走看看