Home>Article>Development Tools> How to quickly build a vue template using VSCode? Method introduction
使用VSCode如何快速搭建vue模板?下面本篇文章给大家介绍一下VSCode快速搭建vue模板的方法。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
相关推荐:《vscode教程》
VSCode快速搭建vue模板
文件 -> 首选项 -> 用户代码片段
搜索vue
vue2.x添加下方代码
{ "Print to console": { "prefix": "vue", "body": [ "", "", " ", "", "", "", "" ], "description": "Log output to console" } }
vue3.x添加下方代码
{ "Print to console": { "prefix": "vue3", "body": [ "", "", " ", "", "", "", "" ], "description": "Log output to console" } }
新建.vue文件后:
相关推荐:
更多编程相关知识,请访问:编程教学!!
The above is the detailed content of How to quickly build a vue template using VSCode? Method introduction. For more information, please follow other related articles on the PHP Chinese website!