uview-pro
Version:
uView Pro,是全面支持Vue3的uni-app生态框架,70+精选组件已使用TypeScript重构,已全面支持uni-app Vue3.0
15 lines (12 loc) • 468 B
text/typescript
import type { ExtractPropTypes, PropType } from 'vue';
/**
* u-full-screen 组件 Props 类型定义
* @description 用于APP弹窗遮盖导航栏和底部tabbar,提示新版本升级内容
*/
export const FullScreenProps = {
/** 是否显示弹窗 */
show: { type: Boolean, default: false },
/** 升级内容,支持富文本 */
content: { type: String, default: '' }
};
export type FullScreenProps = ExtractPropTypes<typeof FullScreenProps>;