Last active
September 2, 2017 15:36
-
-
Save gearmobile/dfeb902d7bab6280cbecdb8e003e4db6 to your computer and use it in GitHub Desktop.
Snippet Create New Vue Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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