Last active
February 14, 2017 16:46
-
-
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]
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
<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