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 @@ -38,6 +38,7 @@ You can enable tab completion (recommended) by opening `Code > Preferences > Set
3838| ` vbase-css ` | Single file component base with CSS |
3939| ` vbase-pcss ` | Single file component base with PostCSS |
4040| ` vbase-ts ` | Single file component base with Typescript |
41+ | ` vbase-ns ` | Single file component with no styles |
4142
4243### Template
4344
Original file line number Diff line number Diff line change 8484 " </style>"
8585 ],
8686 "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+ }
88105}
89-
You can’t perform that action at this time.
0 commit comments