Skip to content

Instantly share code, notes, and snippets.

@CMarzin
Created August 14, 2017 14:12
Show Gist options
  • Save CMarzin/0500e938187adf2be98cc4478b89c4a1 to your computer and use it in GitHub Desktop.
Save CMarzin/0500e938187adf2be98cc4478b89c4a1 to your computer and use it in GitHub Desktop.
Snippet vue for VS Code
"Basic Vue component": {
"prefix": "vue",
"body": [
"<template>",
"</template>",
"$2",
"<script>",
"export default {",
" name: '',",
" data () {",
" return {}",
" }",
"}",
"</script>",
"$2",
"<!-- Add \"scoped\" attribute to limit CSS to this component only -->",
"<style scoped lang=\"scss\"></style>"
],
"description": "basic vue component"
}
@CMarzin
Copy link
Author

CMarzin commented Aug 14, 2017

Put in preference --> User Snippet --> choose language = vue

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