Skip to content

Instantly share code, notes, and snippets.

@amcsi
Created April 17, 2017 16:17
Show Gist options
  • Save amcsi/82d021dc28050855ae922b5cb6b2e772 to your computer and use it in GitHub Desktop.
Save amcsi/82d021dc28050855ae922b5cb6b2e772 to your computer and use it in GitHub Desktop.
Vue file showing createElement() method references not working in IntelliJ plugin
<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