c-uview-plus
Version:
零云®uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水
17 lines (13 loc) • 346 B
TypeScript
import { AllowedComponentProps, VNodeProps } from './_common'
declare interface SafeBottomProps {
/**
* 定义需要用到的外部样式
*/
customStyle?: unknown
}
declare interface _SafeBottom {
new (): {
$props: AllowedComponentProps & VNodeProps & SafeBottomProps
}
}
export declare const SafeBottom: _SafeBottom