Skip to content

Instantly share code, notes, and snippets.

@adamwathan
Created February 5, 2018 20:24
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamwathan/bd3ac37fa26a57ff89cd4d21bb2e4ea1 to your computer and use it in GitHub Desktop.
Save adamwathan/bd3ac37fa26a57ff89cd4d21bb2e4ea1 to your computer and use it in GitHub Desktop.
Vue Component Snippet for Sublime
<snippet>
<content><![CDATA[
<template>
${0}
</template>
<script>
export default {
props: [${1}],
data() {
return {
${2}
}
},
methods: {
${3}
},
}
</script>
]]></content>
<tabTrigger>vue</tabTrigger>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment