File tree 2 files changed +49
-6
lines changed
2 files changed +49
-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-sass ` | Single file component base with SASS |
39
+ | ` vbase-css ` | Single file component base with CSS |
40
+ | ` vbase-less ` | Single file component base with LESS |
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 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