1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Leptodon
//
// Copyright (C) 2025-2026 Open Analytics NV
//
// ===========================================================================
//
// This program is free software: you can redistribute it and/or modify it
// under the terms of the Apache License as published by The Apache Software
// Foundation, either version 2 of the License, or (at your option) any later
// version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the Apache License for more details.
//
// You should have received a copy of the Apache License along with this program.
// If not, see <http://www.apache.org/licenses/>
use generate_docs;
use ;
use ;
use A;
use ToHref;
use crateclass_list;
use crateMaybeReactiveClass;
const LINK_CLASSES: &str = "hover:underline";
/// See [[A](leptos_router::components::A)]
]
target: ,
/// If `true`, the link is marked aria-active when the location matches exactly;
/// if false, link is marked aria-active if the current route starts with it.
exact: bool,
/// Whether this link should not change the text-color of its [children]
colorless: bool,
/// If `true`, and when `href` has a trailing slash, `aria-current` will only be set if `current_url` also has
/// a trailing slash.
strict_trailing_slash: bool,
/// If `true`, the router will scroll to the top of the window at the end of navigation. Defaults to `true`.
scroll: bool,
/// The nodes or elements to be shown inside the link.
children: Children,
) where
H: ToHref + Send + Sync + 'static,