Skip to content

Instantly share code, notes, and snippets.

@colinf
Last active February 14, 2017 16:46
Show Gist options
  • Save colinf/cad9854755c9a257fbabc73b06fcd219 to your computer and use it in GitHub Desktop.
Save colinf/cad9854755c9a257fbabc73b06fcd219 to your computer and use it in GitHub Desktop.
WebStorm code template for vuejs component using vuex [WebStorm -> Preferences -> Editor -> File & Code Templates]
<template>
<div id='${NAME}'>
#[[$END$]]#
</div>
</template>
<script>
import { mapState, mapActions } from 'vuex'
export default {
computed: {
...mapState([])
},
methods: {
...mapActions([])
}
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment