File tree 3 files changed +25
-3
lines changed
3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,9 @@ You can enable tab completion (recommended) by opening `Code > Preferences > Set
34
34
35
35
| Snippet | Purpose |
36
36
| ----------- | ------------------------------------------ |
37
- | ` vbase ` | Single file component base |
37
+ | ` vbase ` | Single file component base with SCSS |
38
38
| ` vbase-css ` | Single file component base with CSS |
39
+ | ` vbase-pcss ` | Single file component base with PostCSS |
39
40
| ` vbase-ts ` | Single file component base with Typescript |
40
41
41
42
### Template
File renamed without changes.
Original file line number Diff line number Diff line change 18
18
" " ,
19
19
" </style>"
20
20
],
21
- "description" : " Base for Vue File"
21
+ "description" : " Base for Vue File with SCSS"
22
+ },
23
+ "Vue Single File Component with postcss" : {
24
+ "prefix" : " vbase-pcss" ,
25
+ "body" : [
26
+ " <template>" ,
27
+ " \t <div>" ,
28
+ " " ,
29
+ " \t </div>" ,
30
+ " </template>" ,
31
+ " " ,
32
+ " <script>" ,
33
+ " \t export default {" ,
34
+ " \t\t ${0}" ,
35
+ " \t }" ,
36
+ " </script>" ,
37
+ " " ,
38
+ " <style lang=\" postcss\" scoped>" ,
39
+ " " ,
40
+ " </style>"
41
+ ],
42
+ "description" : " Base for Vue File with PostCSS"
22
43
},
23
44
"Vue Single File Component with Css" : {
24
45
"prefix" : " vbase-css" ,
39
60
" " ,
40
61
" </style>"
41
62
],
42
- "description" : " Base for Vue File"
63
+ "description" : " Base for Vue File with CSS "
43
64
},
44
65
"Vue Single File Component with Typescript" : {
45
66
"prefix" : " vbase-ts" ,
You can’t perform that action at this time.
0 commit comments