UNPKG

@cataract6545/tmui

Version:

tm-vuetify是一个新势力由主题驱动的UI组件库,相比其它优势大,组件全,设计趋势紧跟未来。具有主题生成,主题实时切换,暗黑实时切换,lottie动画,图表等新颖功能,tmui TMUI

44 lines (43 loc) 684 B
import { PropType } from "vue" import { actionItem } from "./interface" export const defaultProps = { width: { type: Number, default: 750 }, height: { type: Number, default: 88 }, disabled: { type: Boolean, default: false }, transprent: { type: Boolean, default: false }, color: { type: String, default: 'white' }, round: { type: Number, default: 0 }, //当前打开的状态,可以使用v-model:open-status openStatus: { type: Boolean, default: false }, /** 单位 rpx, */ leftWidth: { type: Number, default: 120 }, /** 单位 rpx, */ rightWidth: { type: Number, default: 220 }, }