Skip to content

Instantly share code, notes, and snippets.

@opejovic
Created May 3, 2019 19:45
Show Gist options
  • Save opejovic/673ef81f9484ed01286f17c35fdba3eb to your computer and use it in GitHub Desktop.
Save opejovic/673ef81f9484ed01286f17c35fdba3eb 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