UNPKG

nutui-uniapp

Version:

京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)

13 lines (10 loc) 313 B
import type { ExtractPropTypes, PropType } from 'vue' import { commonProps } from '../_utils' export const safeareaProps = { ...commonProps, /** * @description 安全区的位置 */ position: String as PropType<'top' | 'bottom'>, } export type SafeAreaProps = ExtractPropTypes<typeof safeareaProps>