Created
February 5, 2018 20:24
-
-
Save adamwathan/bd3ac37fa26a57ff89cd4d21bb2e4ea1 to your computer and use it in GitHub Desktop.
Vue Component Snippet for Sublime
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
<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