@daysnap/horn-ui
Version:
hron ui
12 lines (9 loc) • 330 B
text/typescript
import type { ExtractPropTypes } from 'vue'
import { horHeaderProps } from '../hor-header'
import { makeBooleanProp } from '../utils'
export const horViewProps = {
...horHeaderProps,
useNavBar: makeBooleanProp(true),
useTabScroll: makeBooleanProp(false),
}
export type HorViewProps = ExtractPropTypes<typeof horViewProps>