Skip to content

Instantly share code, notes, and snippets.

@doronguttman
Last active July 25, 2019 15:34
Show Gist options
  • Save doronguttman/60a36c5218b2ed9b314474bab879af77 to your computer and use it in GitHub Desktop.
Save doronguttman/60a36c5218b2ed9b314474bab879af77 to your computer and use it in GitHub Desktop.
multi-file vue.js scaffold vscode snippet
{
"scaffold multi-file": {
"prefix": "multi file scaffold (TS/SCSS)",
"body": [
"<template>",
"\t${0}",
"</template>",
"",
"<script lang=\"ts\" src=\"./${1:$TM_FILENAME_BASE}.ts\"></script>",
"<style lang=\"scss\" src=\"./${1:$TM_FILENAME_BASE}.scss\"></style>",
""
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment