Replies: 2 comments 2 replies
-
@gudufy Thank you for filing this issue. In order for us to investigate this issue, please provide a minimalistic repro project that illustrates the problem. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@gudufy 感谢提交 Issue 右上角帮忙点一下 star 谢谢啦,请尽快补充复现工程 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there an existing issue for this?
Describe the bug
还有个问题就是同样的url,参数不同则会生成多个tab,比如/users和/users?a=3会生成两个tab,能否控制不同参数都在一个tab里显示?
Expected Behavior
1.当标签超过屏幕宽度自动右移,且增加鼠标滚轮控制左右移动
2.同一个url不同参数都在一个tab里显示
Steps To Reproduce
在简约项目里打开多标签模式,然后增加以下tab
var menus = new List<MenuItem> { new() { Text = "Index", Icon = "fa-solid fa-fw fa-flag", Url = "/" , Match = NavLinkMatch.All}, new() { Text = "Counter", Icon = "fa-solid fa-fw fa-check-square", Url = "/counter" }, new() { Text = "Weather", Icon = "fa-solid fa-fw fa-database", Url = "/weather" }, new() { Text = "Table", Icon = "fa-solid fa-fw fa-table", Url = "/table" }, new() { Text = "花名册", Icon = "fa-solid fa-fw fa-users", Url = "/users" }, new() { Text = "Index", Icon = "fa-solid fa-fw fa-flag", Url = "/?a=1" , Match = NavLinkMatch.All}, new() { Text = "Counter", Icon = "fa-solid fa-fw fa-check-square", Url = "/counter?a=1" }, new() { Text = "Weather", Icon = "fa-solid fa-fw fa-database", Url = "/weather?a=1" }, new() { Text = "Table", Icon = "fa-solid fa-fw fa-table", Url = "/table?a=1" }, new() { Text = "花名册", Icon = "fa-solid fa-fw fa-users", Url = "/users?a=1" }, new() { Text = "Index", Icon = "fa-solid fa-fw fa-flag", Url = "/?a=2" , Match = NavLinkMatch.All}, new() { Text = "Counter", Icon = "fa-solid fa-fw fa-check-square", Url = "/counter?a=2" }, new() { Text = "Weather", Icon = "fa-solid fa-fw fa-database", Url = "/weather?a=2" }, new() { Text = "Table", Icon = "fa-solid fa-fw fa-table", Url = "/table?a=2" }, new() { Text = "花名册", Icon = "fa-solid fa-fw fa-users", Url = "/users?a=2" }, new() { Text = "Index", Icon = "fa-solid fa-fw fa-flag", Url = "/?a=3" , Match = NavLinkMatch.All}, new() { Text = "Counter", Icon = "fa-solid fa-fw fa-check-square", Url = "/counter?a=3" }, new() { Text = "Weather", Icon = "fa-solid fa-fw fa-database", Url = "/weather?a=3" }, new() { Text = "Table", Icon = "fa-solid fa-fw fa-table", Url = "/table?a=3" }, new() { Text = "花名册", Icon = "fa-solid fa-fw fa-users", Url = "/users?a=3" } };
Exceptions (if any)
No response
.NET Version
.net 8
Anything else?
vs 2022
Beta Was this translation helpful? Give feedback.
All reactions