欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > > 文章正文

vscode常用代码片段(持续更新),vscode代码片段

来源: javaer 分享于  点击 10141 次 点评:143

vscode常用代码片段(持续更新),vscode代码片段


"Print to console": {
        "prefix": "te",
        "body": [
            "<template>",
            "  <div></div>",
            "</template>",
            "",
            "<script>",
            "export default {",
            "  data() {",
            "    return {",
            "    }",
            "  },",
            "",
            "  components: {},",
            "",
            "  computed: {},",
            "",
            "  mounted: {},",
            "",
            "  methods: {}",
            "}",
            "",
            "</script>",
            "<style lang='scss' scoped>",
            "</style>"
        ],
        "description": "vue-template"
    },
    "Print to response": {
        "prefix": "res",
        "body": [
                ".then(",
                "  response => {$1}",
                ")"
        ],
        "description": "vue-template"
    }

相关文章

    暂无相关文章

用户点评