Skip to content

Instantly share code, notes, and snippets.

@gearmobile
Last active September 2, 2017 15:36
Show Gist options
  • Save gearmobile/dfeb902d7bab6280cbecdb8e003e4db6 to your computer and use it in GitHub Desktop.
Save gearmobile/dfeb902d7bab6280cbecdb8e003e4db6 to your computer and use it in GitHub Desktop.
Snippet Create New Vue Component
"New Vue Component": {
"prefix": "vnc",
"body": [
"<template lang=\"pug\">",
" //",
"</template>",
"",
"<script>",
" export default {",
" name: '${1:name}',",
" data () {",
" return {",
" //",
" }",
" }",
" }",
"</script>",
"",
"<style lang=\"stylus\" scoped>",
" //",
"</style>",
""
],
"description": "New Vue Component"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment