Created
April 16, 2018 12:48
-
-
Save terwanerik/a2d64292578091931a4fdcaa3d6e159b to your computer and use it in GitHub Desktop.
Vue component file template for PHPStorm/WebStorm/IntelliJ
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
#set( $regex = "([a-z])([A-Z]+)") | |
#set( $replacement = "$1-$2") | |
#set( $COMPONENT_NAME_KEBAB = $COMPONENT_NAME.replaceAll($regex, $replacement).toLowerCase()) | |
<template> | |
<div class="$COMPONENT_NAME"> | |
#[[$END$]]# | |
</div> | |
</template> | |
<script type="text/babel"> | |
export default { | |
name: '${COMPONENT_NAME_KEBAB}' | |
} | |
</script> | |
<style> | |
.$COMPONENT_NAME { | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment