转到定义在 VSCODE + VETUR 的同一文件中不起作用

Go To definition does not work in same file with VSCODE + VETUR

我的vue.js配置是

按照代码,“go definition”不适用于“找不到定义”

<template>
<div>
<button @click="clickEvent"/>
</div>
</template>

<script>
export default {
  ...
  methods: {
    clickEvent() {
      this.function1()
      ...
    },
    function1() {
      ...
    }
  }
  ...
}
</script>

vetur好像没有这个功能。也许你可以尝试使用 vue-helper.