当前位置: 首页 > article >正文

vscode设置代码模板

一键生成vue3模板代码

效果演示

输入vue3 显示快捷键 按回车键 一键生成自定义模板
在这里插入图片描述在这里插入图片描述

实现方法

  1. 进入用户代码片段设置
    在这里插入图片描述
  2. 选择片段语言 vue.json在这里插入图片描述
  3. 输入自定义的代码片段
    prefix是触发的内容,按自己的喜好来就行;
    body是模板代码,写入自己需要的就行
{
	// Place your snippets for vue 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:
	"create vue3 template": {
        "prefix": "vue3",  
        "body": [
          "<template>",
          "  <div class=\"$1\">$2</div>",
          "</template>",
          "",
          "<script setup>",
          "import { ref, reactive } from 'vue'",
         
          "</script>",
          "<style  lang='scss' scoped>",
          "$4",
          "</style>"
        ],
        "description": "create vue3 template"
      },
      
    }



完成!!


一键生成css样式

效果演示

实现方法

  1. 同上
  2. 选择你使用的语言,例如css、scss

在这里插入图片描述3. 输入自定义代码,我这里是设置brr快捷键是border: 1px solid red;

{
	// Place your snippets for scss 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:
	"set a border": {
		"prefix": "brr",
		"body": [
			"border: 1px solid red;",
			"$2"
		],
		"description": "set a border"
	}
}

一键输出console.log('$1');

效果演示

在这里插入图片描述

实现方法

  1. 同上
  2. 选择javascript.json
  3. 写入代码
{
	// Place your snippets for javascript 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": "cl",
		"body": [
			"console.log('$1');",
			"$2"
		],
		"description": "Log output to console"
	}
}

http://www.kler.cn/a/136463.html

相关文章:

  • 数据挖掘实训:天气数据分析与机器学习模型构建
  • HBuilderX打包ios保姆式教程
  • 本地手集博客id“升级”在线抓取——简陋版——(2024年终总结1.1)
  • 2025年XR行业展望:超越虚拟,融合现实
  • 计算机网络之---数据传输与比特流
  • Matplotlib 直方图:数据可视化基础
  • 七,vi和vim
  • 基于单片机PM2.5监测系统仿真设计
  • SQL引擎子系统的工作原理
  • Leetcode—876.链表的中间结点【简单】
  • 4.3 Windows驱动开发:监控进程与线程对象操作
  • Python算法——树的序列化与反序列化
  • 【Python】 Python 操作PDF文档
  • 基于安卓android微信小程序的好物分享系统
  • 【shell】 1、bash语法超详细介绍
  • EtherCAT从站EEPROM分类附加信息详解:RXPDO(输入过程数据对象)
  • 请求prometheus数据然后使用tensorflow计算正则模型
  • C语言:结构体
  • vue3+vite+SQL.js 读取db3文件数据
  • 汽车标定技术--A2L格式分析
  • 解决Requests中使用httpbin服务器问题:自定义URL的实现与验证
  • sql添加索引
  • C++多线程编程:其六、unique_lock的使用
  • 【寒武纪(14)】硬件系统由标量指令、向量指令、张量指令、访存指令构成
  • BUUCTF [BJDCTF2020]一叶障目 1
  • 在服务器上部署MVC 6应用程序