Skip to content

Commit 4192cba

Browse files
authored
Merge branch 'master' into master
2 parents 6745d30 + d20add6 commit 4192cba

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,4 @@ jspm_packages
7474
# VS Code
7575
vsc-extension-quickstart.md
7676
*.vsix
77+
.vscode

README.md

+1
Original file line numberDiff line numberDiff 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

snippets/vue.json

+18-2
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,22 @@
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+
"\texport default {",
120+
"\t\t${0}",
121+
"\t}",
122+
"</script>"
123+
],
124+
"description": "Base for Vue File with no styles"
125+
}
109126
}
110-

0 commit comments

Comments
 (0)