欢迎莅临 SUN WU GANG 的园子!!!

世上无难事,只畏有心人。有心之人,即立志之坚午也,志坚则不畏事之不成。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  470 随笔 :: 0 文章 :: 22 评论 :: 30万 阅读
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

自定义代码片段操作步骤:

第一步:文件==》首选项==》配置用户代码片段==》新建全局代码片段==》输入自定义文件名称

第一步:设置(鼠标左键)==》用户代码片段==》新建全局代码片段==》输入自定义文件名称

第二步:选择“新建全局代码片段文件,然后输入文件名称

第三步:自定义代码片段

----------------------------------自定义代码片段重点说明信息如下所示:----------------------------------

"Print to console:代码片段的名称,不同代码片段需要不同,在快捷输入中可以看到

scope:表示这个代码片段使用的语言,多种用,分隔,如果不写表示全部适用

prefix:表示快捷输入的字符串,输入的内容出现提示

body:生成代码的主体,具体在后续讲解

description:描述
---------------------------------------------------------------------------------------------------------------------------

示例如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
    // 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": "javascript,typescript",
    //  "prefix": "log",
    //  "body": [
    //      "console.log('$1');",
    //      "$2"
    //  ],
    //  "description": "Log output to console"
    // }
 
    // 自定义 script 动态生成代码片段
 
    "myscript": {
    //  "scope": "javascript,typescript,vue", //注释表示所有文件中可用
     "prefix": "myscript",
     "body": [
      "<script type=\"text/javascript\">",
 
      "",
      "</script>",
     ],
     "description": "自定义script"
   },
 
     "myVue": {
    //  "scope": "javascript,typescript,vue", //注释表示所有文件中可用
     "prefix": "myVue",
     "body": [
            "//console.log(vm)"
      "const vm = new Vue({",
      "el: '#root',",
            "data: {",
                    "",
            "},"
            "",
            "methods: {"
                "methodOne() {",
                    "alert('事件触发成功!')"
                "},"
                "",
                "methodTwo(event, str) {",
                    "alert('事件触发成功!' + str)"
                "},"
                "},"
      "})",
     ],
     "description": "自定义script"
   }
}

效果如下所示:

以下为自定义代码片段(多片段之间使用逗号分开)

mydiv

1
2
3
4
5
6
7
8
9
10
11
"mydiv": {
    //  "scope": "javascript,typescript,vue", //注释表示所有文件中可用
     "prefix": "mydiv",
     "body": [
      "<div id=\"root\">",
 
      "",
      "</div>",
     ],
     "description": "自定义script"
   },

自定义input、button

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"mybutton": {
    //  "scope": "javascript,typescript,vue", //注释表示所有文件中可用
     "prefix": "mybutton",
     "body": [
      "<button @click=\"method\">查询</button>",
      "",
     ],
     "description": "自定义 button"
   },
 
    "mytextoneway": {
    //  "scope": "javascript,typescript,vue", //注释表示所有文件中可用
     "prefix": "mytextoneway",
     "body": [
      "<input type=\"text\" v-bind:value=\"nickname\">",
      "",
     ],
     "description": "自定义 input text"
   },
     "mytexttwoway": {
    //  "scope": "javascript,typescript,vue", //注释表示所有文件中可用
     "prefix": "mytexttwoway",
     "body": [
      "<input type=\"text\" v-model:value=\"nickname\">",
            "",
     ],
     "description": "自定义 input text"
   },

  

 

posted on   sunwugang  阅读(310)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
点击右上角即可分享
微信分享提示