File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 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
3434
3535| Snippet | Purpose |
3636| ----------- | ------------------------------------------ |
37- | ` vbase ` | Single file component base |
37+ | ` vbase ` | Single file component base with SCSS |
3838| ` vbase-css ` | Single file component base with CSS |
39+ | ` vbase-pcss ` | Single file component base with PostCSS |
3940| ` vbase-ts ` | Single file component base with Typescript |
4041
4142### Template
File renamed without changes.
Original file line number Diff line number Diff line change 1818 " " ,
1919 " </style>"
2020 ],
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"
2243 },
2344 "Vue Single File Component with Css" : {
2445 "prefix" : " vbase-css" ,
3960 " " ,
4061 " </style>"
4162 ],
42- "description" : " Base for Vue File"
63+ "description" : " Base for Vue File with CSS "
4364 },
4465 "Vue Single File Component with Typescript" : {
4566 "prefix" : " vbase-ts" ,
You can’t perform that action at this time.
0 commit comments