Skip to content

Instantly share code, notes, and snippets.

@taka1156
Last active February 19, 2021 13:23
Show Gist options
  • Save taka1156/862cc1860c55d5c00a13efbc0e58fefd to your computer and use it in GitHub Desktop.
Save taka1156/862cc1860c55d5c00a13efbc0e58fefd to your computer and use it in GitHub Desktop.
vscode vueスニペット
{
"Print to vue-ts": {
"prefix": "<vue-ts>",
"body": [
"<template>",
"$0",
"</template>\n",
"<script lang=\"ts\">",
"import { defineComponent } from \"vue\";\n",
"export default defineComponent({",
"",
"});\n",
"</script>\n",
"<style scoped>",
"",
"</style>",
],
"description": "Vue TypeScript template"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment