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 @@ -39,6 +39,7 @@ You can enable tab completion (recommended) by opening `Code > Preferences > Set
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
+ | ` vbase-ns ` | Single file component with no styles |
42
43
43
44
### Template
44
45
Original file line number Diff line number Diff line change 105
105
" </style>"
106
106
],
107
107
"description" : " Base for Vue File with Typescript"
108
- }
108
+ },
109
+ "Vue Single File Component with No Style" : {
110
+ "prefix" : " vbase-ns" ,
111
+ "body" : [
112
+ " <template>" ,
113
+ " \t <div>" ,
114
+ " " ,
115
+ " \t </div>" ,
116
+ " </template>" ,
117
+ " " ,
118
+ " <script>" ,
119
+ " \t export default {" ,
120
+ " \t\t ${0}" ,
121
+ " \t }" ,
122
+ " </script>"
123
+ ],
124
+ "description" : " Base for Vue File with no styles"
125
+ }
109
126
}
110
-
You can’t perform that action at this time.
0 commit comments