VSCode-VUE模板文件

編輯本身的代碼片斷

  1. ctrl+shift+pvue

  2. 輸入snippetjson

  3. 選擇 'Preferences: Configure User Snippets'less

  4. 輸入vuespa

  5. 選擇vue.json,會打開vue.json文件code

  6. 在文件中輸入如下代碼component

    {
        "vue-template": {
            "prefix": "vue",
            "body": [
                "<template>",
                "  <div class=\"\">",
                "",
                "  </div>",
                "</template>",
                "",
                "<script>",
                "export default {",
                "  name: '',",
                "  data() { ",
                "    return {",
                "",
                "    }",
                "  },",
                "  props: {",
                "",
                "  },",
                "  components:{",
                "  },",
                "  mounted() {",
                "",
                "  },",
                "  methods:{",
                "",
                "  },",
                " }",
                "</script>",
                "",
                "<style lang=\"less\" scoped>",
                "  .$1{",
                "",
                "  }",
                "</style>"
    
            ],
            "description": "my vue template"
        }
    }

使用代碼片斷

  1. 新建vue文件
  2. 打開剛剛新建的vue文件
  3. 輸入vue,會有提示,回車便可
相關文章
相關標籤/搜索