vscode快捷创建vue文件模板


输入vue,选择编辑vue.json,插入json对象

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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM