vscode代码片段,react模版
程序员文章站
2024-01-01 09:08:04
{ // 在此处放置您的片段。 每个代码段均以代码段名称定义,并具有范围,前缀,主体和 // 描述。 在范围字段中添加代码段适用的语言的逗号分隔ID。 如果范围 // 如果保留为空或省略,则代码段将应用于所有语言。 前缀是什么 // 用于触发代码段,然后将展开并插入正文。 可能的变量是: // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placehold...
{ // 在此处放置您的片段。 每个代码段均以代码段名称定义,并具有范围,前缀,主体和 // 描述。 在范围字段中添加代码段适用的语言的逗号分隔ID。 如果范围 // 如果保留为空或省略,则代码段将应用于所有语言。 前缀是什么 // 用于触发代码段,然后将展开并插入正文。 可能的变量是: // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. // 具有相同ID的占位符已连接。 // Example: "全局React函数组件模板": { "scope": "javascript,typescript,typescriptreact", "prefix": "rfc", "body": [ "import React from 'react';", "", "const ${1:Index}: React.FC = () => {", " return <div></div>;", "};", "", "export default ${1:Index};", "" ], "description": "React函数组件默认模版" } }
本文地址:https://blog.csdn.net/qq_33051709/article/details/107891994