File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -74,3 +74,4 @@ jspm_packages
74
74
# VS Code
75
75
vsc-extension-quickstart.md
76
76
* .vsix
77
+ .vscode
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ You can enable tab completion (recommended) by opening `Code > Preferences > Set
38
38
| ` vbase-css ` | Single file component base with CSS |
39
39
| ` vbase-pcss ` | Single file component base with PostCSS |
40
40
| ` vbase-ts ` | Single file component base with Typescript |
41
+ | ` vbase-ns ` | Single file component with no styles |
41
42
42
43
### Template
43
44
Original file line number Diff line number Diff line change 84
84
" </style>"
85
85
],
86
86
"description" : " Base for Vue File with Typescript"
87
- }
87
+ },
88
+ "Vue Single File Component with No Style" : {
89
+ "prefix" : " vbase-ns" ,
90
+ "body" : [
91
+ " <template>" ,
92
+ " \t <div>" ,
93
+ " " ,
94
+ " \t </div>" ,
95
+ " </template>" ,
96
+ " " ,
97
+ " <script>" ,
98
+ " \t export default {" ,
99
+ " \t\t ${0}" ,
100
+ " \t }" ,
101
+ " </script>"
102
+ ],
103
+ "description" : " Base for Vue File with no styles"
104
+ }
88
105
}
89
-
You can’t perform that action at this time.
0 commit comments