File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -74,3 +74,4 @@ jspm_packages
7474# VS Code
7575vsc-extension-quickstart.md
7676* .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
3939| ` vbase-pcss ` | Single file component base with PostCSS |
4040| ` vbase-styl ` | Single file component base with Stylus |
4141| ` vbase-ts ` | Single file component base with Typescript |
42+ | ` vbase-ns ` | Single file component with no styles |
4243
4344### Template
4445
Original file line number Diff line number Diff line change 105105 " </style>"
106106 ],
107107 "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+ }
109126}
110-
You can’t perform that action at this time.
0 commit comments