VSCode 在HTML中自定义vue模板的实现
2021/9/9 6:05:46
本文主要是介绍VSCode 在HTML中自定义vue模板的实现,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
位置:在Vscode中找到 设置 -> 用户代码片段,在输入框内输入html,并点击第一个html.json。
复制以下代码:
{ // Place your snippets for html here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the // same ids are connected. // Example: // "Print to console": { // "prefix": "log", // "body": [ // "console.log('$1');", // "$2" // ], // "description": "Log output to console" // } "Print to console": { "prefix": "vue", // 对应的是使用这个模板的快捷键 "body": [ "<div id=\"app\">", "\t{{message}}", "</div>\n", "<script src=\"../js/vue.js\"></script>", "<script>", " //创建Vue实例,得到 ViewModel", " const app = new Vue({", "\tel: '#app',", "\tdata: {", "\t\tmessage: '${1:hello}',", "\t},", "\tmethods: {", "\t\t", "\t}", " });", "</script>", ], "description": "a vue template" // 模板的描述 } }
转义字符解释:
\t \" \n都是转义字符,而空格就是单纯的空格,输入时可以输入空格
\t 的意思是 横向跳到下一制表符位置 等于 Tab键
\" 的意思是 双引号
\n 的意思是回车换行
$1代表着光标,它的位置即光标的默认位置,可以有多个光标:$2,$3,$4等
这篇关于VSCode 在HTML中自定义vue模板的实现的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15useCallback教程:React Hook入门与实践
- 2024-11-15React中使用useContext开发:初学者指南
- 2024-11-15拖拽排序js案例详解:新手入门教程
- 2024-11-15React中的自定义Hooks案例详解
- 2024-11-14受控组件项目实战:从零开始打造你的第一个React项目
- 2024-11-14React中useEffect开发入门教程
- 2024-11-14React中的useMemo教程:从入门到实践
- 2024-11-14useReducer开发入门教程:轻松掌握React中的useReducer
- 2024-11-14useRef开发入门教程:轻松掌握React中的useRef用法
- 2024-11-14useState开发:React中的状态管理入门教程