[更新]:树形组件基础版
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { App, DefineComponent } from 'vue'
|
||||
import type { App, DefineComponent, Ref } from 'vue'
|
||||
export type StringObject = Record<string, unknown>
|
||||
|
||||
export type UnknownObject = Record<string | number, unknown>
|
||||
@@ -14,4 +14,10 @@ export interface InstallOptions extends StringObject {
|
||||
pagination?: null
|
||||
/** Menu Attributes */
|
||||
menu?: null
|
||||
}
|
||||
}
|
||||
|
||||
export type Nullable<T> = T | null
|
||||
|
||||
export type MaybeRef<T> = Ref<T> | T
|
||||
|
||||
export type Recordable = Record<string, any>
|
||||
|
||||
Reference in New Issue
Block a user