VSCode添加自定义的Vue3.2标准模板

在学习和开发中,我们常常需要写一些固定的内容,但是不希望重复去写,这个时候就可以提前在VSCode中自定义好用户片段,将代码模板定义好,然后每次需要用的时候,输入字符VSCode就能自动为我们创建好,非常简单便捷。

一、创建新的用户片段

点击文件——首选项——用户片段
在这里插入图片描述

新建一个全局代码片段文件
在这里插入图片描述

二、编辑成Vue3.2片段

在新建的用户片段中输入如下代码:

{
	// Place your 全局 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and 
	// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope 
	// is left empty or omitted, the snippet gets applied to all languages. 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": {
		"scope": "vue,javascript,typescript",
		"prefix": "vue3.2",
		"body": [
            "<script setup lang='ts'>",
            "</script>",
            "<template>",
            "</template>",
            "<style>",
            "</style>",
		],
		"description": "Log output to console"
	}
}

其中

  • scope表示在哪些类型的文件中可以使用该用户片段
  • prefix表示输入使用模板的快捷键
  • body表示片段模板的内容(可以自行更改)
    在这里插入图片描述

三、使用自定义的模板片段

在vue(或ts、js)文件中,输入vue3.2,会自动弹出选项,选择其则VSCode就自动创建好了。
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

中杯可乐多加冰

请我喝杯可乐吧,我会多加冰!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值