This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import type { ExtractPropTypes } from 'vue'
import { commonProps, makeNumericProp } from '../_utils'
export const SIDEN_NAVBAR_KEY = Symbol('sidennavbar')
export const sidenavbarProps = {
...commonProps,
/**
* @description 导航缩进宽度
*/
offset: makeNumericProp(15),
}
export type SidenavbarProps = ExtractPropTypes<typeof sidenavbarProps>