Skip to content

Instantly share code, notes, and snippets.

@alanneves
Last active August 9, 2022 19:04
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 alanneves/a3558f80271c2e0c3bf2e3c3aef14a5a to your computer and use it in GitHub Desktop.
Save alanneves/a3558f80271c2e0c3bf2e3c3aef14a5a to your computer and use it in GitHub Desktop.
Create vue.js component - vscode snippet
{
"Create vue.js component": {
"prefix": "component",
"body": [
"<template>",
" <div>$TM_FILENAME</div>",
"</template>",
"",
"<script setup lang=\"ts\">",
"</script>",
"",
"<style scoped>",
"</style>",
],
"description": "Create Vue.js component"
"scope": "vue"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment