We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c9caf commit bce8f2bCopy full SHA for bce8f2b
snippets/vue.json
@@ -84,6 +84,30 @@
84
"</style>"
85
],
86
"description": "Base for Vue File with Typescript"
87
+ },
88
+ "Vue Single File Component with Class based Typescript format": {
89
+ "prefix": "vbase-ts-class",
90
+ "body": [
91
+ "<template>",
92
+ "\t<div>",
93
+ "",
94
+ "\t</div>",
95
+ "</template>",
96
97
+ "<script lang=\"ts\">",
98
+ "\timport { Component, Vue } from 'vue-property-decorator';",
99
100
+ "\t@Component",
101
+ "\texport default class ${0} extends Vue {",
102
+ "\t\t",
103
+ "\t}",
104
+ "</script>",
105
106
+ "<style scoped>",
107
108
+ "</style>"
109
+ ],
110
+ "description": "Base for Vue File with Class based Typescript format"
111
}
112
113
0 commit comments