My vue.js configuration is
On follow code, "go definition" does not work with "could not find definition"
<template>
<div>
<button @click="clickEvent"/>
</div>
</template>
<script>
export default {
...
methods: {
clickEvent() {
this.function1()
...
},
function1() {
...
}
}
...
}
</script>