Skip to content

Instantly share code, notes, and snippets.

@thauska
Last active September 22, 2019 02:15
Show Gist options
  • Save thauska/aeafc2fe906e2285034305f9db2c0e3b to your computer and use it in GitHub Desktop.
Save thauska/aeafc2fe906e2285034305f9db2c0e3b to your computer and use it in GitHub Desktop.
Code Snippets para trazer de volta o comando scaffold do Vue no VS Code. Para usar, ir em Preference > User Snippets, busque por vue e cole este código nele.
{
"bring back the scaffold to vue files": {
"prefix": "scaffold",
"body": [
"<template>",
" ",
"</template>",
"",
"<script>",
"export default {",
" ",
"};",
"</script>",
"",
"<style>",
"</style>",
""
],
"description": "bring back the scaffold to vue files"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment