Created
April 17, 2017 16:17
-
-
Save amcsi/82d021dc28050855ae922b5cb6b2e772 to your computer and use it in GitHub Desktop.
Vue file showing createElement() method references not working in IntelliJ plugin
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> | |
| <button type="button" @click="createElement()">Create element</button> | |
| <button type="button" @click="prependRow()">+</button> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| methods: { | |
| prependRow () { | |
| }, | |
| createElement () { | |
| } | |
| } | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment