File tree Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,15 @@ You can enable tab completion (recommended) by opening `Code > Preferences > Set
33
33
### Vue
34
34
35
35
| Snippet | Purpose |
36
- | ------------ | ------------------------------------------ |
36
+ | ----------- | ------------------------------------------ |
37
37
| ` vbase ` | Single file component base with SCSS |
38
38
| ` vbase-css ` | Single file component base with CSS |
39
39
| ` vbase-pcss ` | Single file component base with PostCSS |
40
40
| ` vbase-styl ` | Single file component base with Stylus |
41
41
| ` vbase-ts ` | Single file component base with Typescript |
42
42
| ` vbase-ns ` | Single file component with no styles |
43
+ | ` vbase-sass ` | Single file component base with SASS |
44
+ | ` vbase-less ` | Single file component base with LESS |
43
45
44
46
### Template
45
47
Original file line number Diff line number Diff line change 20
20
],
21
21
"description" : " Base for Vue File with SCSS"
22
22
},
23
+ "Vue Single File Component with SASS" : {
24
+ "prefix" : " vbase-sass" ,
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=\" sass\" scoped>" ,
39
+ " " ,
40
+ " </style>"
41
+ ],
42
+ "description" : " Base for Vue File with PostCSS"
43
+ },
44
+ "Vue Single File Component with LESS" : {
45
+ "prefix" : " vbase-less" ,
46
+ "body" : [
47
+ " <template>" ,
48
+ " \t <div>" ,
49
+ " " ,
50
+ " \t </div>" ,
51
+ " </template>" ,
52
+ " " ,
53
+ " <script>" ,
54
+ " \t export default {" ,
55
+ " \t\t ${0}" ,
56
+ " \t }" ,
57
+ " </script>" ,
58
+ " " ,
59
+ " <style lang=\" less\" scoped>" ,
60
+ " " ,
61
+ " </style>"
62
+ ],
63
+ "description" : " Base for Vue File with PostCSS"
64
+ },
23
65
"Vue Single File Component with postcss" : {
24
66
"prefix" : " vbase-pcss" ,
25
67
"body" : [
You can’t perform that action at this time.
0 commit comments