Skip to content

Instantly share code, notes, and snippets.

@uriannrima
Last active March 16, 2019 01:12
Show Gist options
  • Save uriannrima/46ffd0fe25e430297b9908ab762427d6 to your computer and use it in GitHub Desktop.
Save uriannrima/46ffd0fe25e430297b9908ab762427d6 to your computer and use it in GitHub Desktop.
Vue typescript component scaffolding (snippet)
{
"Scaffold Typescript Vue Component": {
"prefix": "tscaffold",
"body": [
"<template>",
"",
"</template>",
"",
"<script lang=\"ts\">",
"import Vue from 'vue'",
"",
"export default Vue.extend({",
"",
"})",
"</script>",
"",
"<style>",
"",
"</style>",
""
]
}
}
@uriannrima
Copy link
Author

Added new line at end of file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment