17 lines
263 B
Go
17 lines
263 B
Go
|
package components
|
||
|
|
||
|
type PageNav struct {
|
||
|
NavClass string // nav-pills
|
||
|
NavItems []PageNavItem
|
||
|
IsVertical bool
|
||
|
IsTab bool
|
||
|
}
|
||
|
|
||
|
type PageNavItem struct {
|
||
|
Text string
|
||
|
Link string
|
||
|
IsDisabled bool
|
||
|
IsActive bool
|
||
|
ChildItems []PageNavItem
|
||
|
}
|