Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
1、由于tooltip移入时会消失无法点击其中链接,更改为按钮出发。
2、修复了由于已安装插件与插件市场中name不一致或repo链接大小写不一致导致的检测不到是否安装或有更新的bug
Modifications
1、将v-tooltip作为纯提示,跳转方式更改为父级v-btn按钮触发(line-97 ~ line-106)
2、将复杂的嵌套循环优化为单次循环,将时间复杂度从
O(n*m)
降低到O(n+m)
,并将repo字符串统一为小写形式使比较更加一致和准确(line-430 ~ line-459 && line-634 ~ line-643)