Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
640 views
in Technique[技术] by (71.8m points)

vscode outline不支持查看export default中的方法列表,有什么解决方法?

问题:es6中的 export default 不支持查看方法列表

image.png

export default {
  fun1(state) {
  },
  fun2(state) {
  }
}

module.exports是支持的查看的


module.exports ={
  fun1(state) {
  },
  fun2(state) {
  }
}

image.png

webstorm以上两种都支持;是什么插件可以帮助vscode解决上面的问题?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...