Skip to content

Commit d20add6

Browse files
authored
Merge pull request #57 from dolbex/master
Added vBase with no styles
2 parents e8c9caf + 49cdaff commit d20add6

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
@@ -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

snippets/vue.json

+18-2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,22 @@
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+
"\texport default {",
99+
"\t\t${0}",
100+
"\t}",
101+
"</script>"
102+
],
103+
"description": "Base for Vue File with no styles"
104+
}
88105
}
89-

0 commit comments

Comments
 (0)