Skip to content

Instantly share code, notes, and snippets.

@agm1984
Last active April 30, 2020 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agm1984/6266bb057ffc1ef1643d9030175ac712 to your computer and use it in GitHub Desktop.
Save agm1984/6266bb057ffc1ef1643d9030175ac712 to your computer and use it in GitHub Desktop.
VS Code snippet for a Vue component scaffold
{
"Vue component": {
"prefix": "vue",
"body": [
"<template>",
" <div></div>",
"</template>",
"",
"<script>",
"export default {",
" name: '$1',",
"",
" data() {",
" return {};",
" },",
"",
" computed: {},",
"",
" methods: {},",
"",
"};",
"</script>",
""
],
"description": "Makes a normal Vue component scaffold"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment