File tree 2 files changed +28
-6
lines changed
2 files changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,13 @@ You can enable tab completion (recommended) by opening `Code > Preferences > Set
32
32
33
33
### Vue
34
34
35
- | Snippet | Purpose |
36
- | ----------- | ------------------------------------------ |
37
- | ` vbase ` | Single file component base with SCSS |
38
- | ` vbase-css ` | Single file component base with CSS |
39
- | ` vbase-pcss ` | Single file component base with PostCSS |
40
- | ` vbase-ts ` | Single file component base with Typescript |
35
+ | Snippet | Purpose |
36
+ | ------------ | ------------------------------------------ |
37
+ | ` vbase ` | Single file component base with SCSS |
38
+ | ` vbase-css ` | Single file component base with CSS |
39
+ | ` vbase-pcss ` | Single file component base with PostCSS |
40
+ | ` vbase-styl ` | Single file component base with Stylus |
41
+ | ` vbase-ts ` | Single file component base with Typescript |
41
42
42
43
### Template
43
44
Original file line number Diff line number Diff line change 62
62
],
63
63
"description" : " Base for Vue File with CSS"
64
64
},
65
+ "Vue Single File Component with Stylus" : {
66
+ "prefix" : " vbase-styl" ,
67
+ "body" : [
68
+ " <template>" ,
69
+ " \t <div>" ,
70
+ " " ,
71
+ " \t </div>" ,
72
+ " </template>" ,
73
+ " " ,
74
+ " <script>" ,
75
+ " \t export default {" ,
76
+ " \t\t ${0}" ,
77
+ " \t }" ,
78
+ " </script>" ,
79
+ " " ,
80
+ " <style lang=\" stylus\" scoped>" ,
81
+ " " ,
82
+ " </style>"
83
+ ],
84
+ "description" : " Base for Vue File with Stylus"
85
+ },
65
86
"Vue Single File Component with Typescript" : {
66
87
"prefix" : " vbase-ts" ,
67
88
"body" : [
You can’t perform that action at this time.
0 commit comments