Last active
June 13, 2018 17:53
-
-
Save luiguild/ed7f02fbe97703fe6882d15f18beab1c to your computer and use it in GitHub Desktop.
vue.cson personalization from atom language-vue plugin
This file contains 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
".text.html.vue": | |
"Vue Component": | |
"prefix": "template" | |
"body": """ | |
<template lang="${1:pug}"> | |
</template> | |
<script> | |
// import { | |
// mapGetters, | |
// mapActions | |
// } from 'vuex' | |
export default { | |
props: { | |
// prop: { | |
// type: String, | |
// required: false, | |
// validator (value) { | |
// return value | |
// }, | |
// default () { | |
// return '' | |
// } | |
// } | |
}, | |
data: () => ({}), | |
created () {}, | |
mounted () {}, | |
updated () {}, | |
destroyed () {}, | |
components: {}, | |
computed: { | |
// ...mapGetters([]) | |
}, | |
methods: { | |
// ...mapActions([]) | |
}, | |
filters: {}, | |
watch: {} | |
} | |
</script> | |
<style lang="sass"> | |
// @import | |
</style> | |
""" | |
"Router link": | |
"prefix": "router-link" | |
"body": """ | |
router-link(:to="{ name: '', params: {} }") | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment