2024-10-12 14:01:52 -04:00
|
|
|
package components
|
|
|
|
|
|
|
|
type PageNav struct {
|
2024-10-15 17:09:17 -04:00
|
|
|
NavClass string // nav-pills, nav-underline
|
2024-10-12 14:01:52 -04:00
|
|
|
NavItems []PageNavItem
|
|
|
|
IsVertical bool
|
|
|
|
IsTab bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type PageNavItem struct {
|
|
|
|
Text string
|
|
|
|
Link string
|
|
|
|
IsDisabled bool
|
|
|
|
IsActive bool
|
|
|
|
ChildItems []PageNavItem
|
|
|
|
}
|