UNPKG

elegant-wui-uni

Version:

一个基于Vue3+TS开发的uni-app组件库,提供70+高质量组件,支持暗黑模式、国际化和自定义主题。

34 lines (32 loc) 522 B
import { baseProps } from '../common/props' export const galleryProps = { ...baseProps, urls: { type: Array, default() { return [] } }, show: { type: Boolean, default: false }, current: { type: [Number, String], default: 0 }, //文字超出是否省略成一行 ellipsis: { type: Boolean, default: false }, zIndex: { type: [Number, String], default: 9999 }, //是否适配底部安全区 safeArea: { type: Boolean, default: true } }