mirror of
https://github.com/rustfs/console.git
synced 2026-09-21 06:06:37 +08:00
* fix: PageHeader overlaps Sidebar on small screens * refactor: move appName and appDescription to defineNuxtConfig * chore: replace clipboard with vueuse useClipboard * chore(deps): remove unused deps * chore: bump deps Add type conversion `... as Shape` to AutoForm and AutoFormFiledObject for compatibility with vue-tsc v3. Add `import ‘vue-sonner/style.css’` for compatibility with vue-sonner v2. Move @aws-sdk/types to dependencies. Format code.
11 lines
171 B
TypeScript
11 lines
171 B
TypeScript
export interface NavItem {
|
|
label: string
|
|
isAdminOnly?: boolean
|
|
to?: string
|
|
type?: string
|
|
icon?: string
|
|
target?: string
|
|
key?: string
|
|
children?: NavItem[]
|
|
}
|