-
Notifications
You must be signed in to change notification settings - Fork 312
fix(breadcrumb): [breadcrumb]modify demo of disable page redirection #2272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,19 +1,19 @@ | ||||||
<template> | ||||||
<div> | ||||||
<tiny-breadcrumb separator="/"> | ||||||
<tiny-breadcrumb-item><a href="/">首页</a></tiny-breadcrumb-item> | ||||||
<tiny-breadcrumb-item><a href="#">首页</a></tiny-breadcrumb-item> | ||||||
<tiny-breadcrumb-item> | ||||||
<a href="/"> 产品 </a> | ||||||
<a href="#"> 产品 </a> | ||||||
</tiny-breadcrumb-item> | ||||||
<tiny-breadcrumb-item><a href="/"> 软件</a></tiny-breadcrumb-item> | ||||||
<tiny-breadcrumb-item><a href="#"> 软件</a></tiny-breadcrumb-item> | ||||||
</tiny-breadcrumb> | ||||||
<br /> | ||||||
<tiny-breadcrumb :separator-icon="IconBoat"> | ||||||
<tiny-breadcrumb-item><a hrfe="/">首页</a></tiny-breadcrumb-item> | ||||||
<tiny-breadcrumb-item><a hrfe="#">首页</a></tiny-breadcrumb-item> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix typo in href attribute. There's a typographical error in the attribute name. It should be "href" instead of "hrfe". Please apply the following change: - <tiny-breadcrumb-item><a hrfe="#">首页</a></tiny-breadcrumb-item>
+ <tiny-breadcrumb-item><a href="#">首页</a></tiny-breadcrumb-item> 📝 Committable suggestion
Suggested change
|
||||||
<tiny-breadcrumb-item> | ||||||
<a href="/"> 产品 </a> | ||||||
<a href="#"> 产品 </a> | ||||||
</tiny-breadcrumb-item> | ||||||
<tiny-breadcrumb-item><a href="/"> 软件</a></tiny-breadcrumb-item> | ||||||
<tiny-breadcrumb-item><a href="#"> 软件</a></tiny-breadcrumb-item> | ||||||
</tiny-breadcrumb> | ||||||
</div> | ||||||
</template> | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix typo in href attribute.
While the change from
href="/"
tohref="#"
is consistent with previous modifications, there's a typo in the attribute name. It's currentlyhrfe
instead ofhref
.Please apply the following fix:
📝 Committable suggestion