fix: prevent <a> tag to be crawled
parent
943a345a92
commit
8e15f126eb
|
@ -75,7 +75,7 @@ export default defineComponent({
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
let jumpPrevIcon = (
|
let jumpPrevIcon = (
|
||||||
<a class={`${pre}-item-link`}>
|
<a rel='nofollow' class={`${pre}-item-link`}>
|
||||||
{/* You can use transition effects in the container :) */}
|
{/* You can use transition effects in the container :) */}
|
||||||
<div class={`${pre}-item-container`}>
|
<div class={`${pre}-item-container`}>
|
||||||
<DoubleLeftOutlined class={`${pre}-item-link-icon`} />
|
<DoubleLeftOutlined class={`${pre}-item-link-icon`} />
|
||||||
|
@ -84,7 +84,7 @@ export default defineComponent({
|
||||||
</a>
|
</a>
|
||||||
);
|
);
|
||||||
let jumpNextIcon = (
|
let jumpNextIcon = (
|
||||||
<a class={`${pre}-item-link`}>
|
<a rel='nofollow' class={`${pre}-item-link`}>
|
||||||
{/* You can use transition effects in the container :) */}
|
{/* You can use transition effects in the container :) */}
|
||||||
<div class={`${pre}-item-container`}>
|
<div class={`${pre}-item-container`}>
|
||||||
<DoubleRightOutlined class={`${pre}-item-link-icon`} />
|
<DoubleRightOutlined class={`${pre}-item-link-icon`} />
|
||||||
|
|
Loading…
Reference in New Issue