@cataract6545/tmui
Version:
tm-vuetify是一个新势力由主题驱动的UI组件库,相比其它优势大,组件全,设计趋势紧跟未来。具有主题生成,主题实时切换,暗黑实时切换,lottie动画,图表等新颖功能,tmui TMUI
31 lines (30 loc) • 630 B
text/typescript
import { linearDeep, linearDirection } from "../../tool/lib/interface"
//按钮的位置
export enum positionType {
tl = 'tl',
tc = 'tc',
tr = 'tr',
bl = 'bl',
bc = 'bc',
br = 'br',
}
//子菜单弹出的位置
export enum popDir {
l = 'left',
t = 'top',
b = 'bottom',
r = 'right'
}
export interface actionsItem {
icon: string,
label?: string,
iconSize?: number,
fontSize?: number,
color?: string,//背景
fontColor?: string,
linear?: string,
linearDeep?: string
openType?:string,
callback?:Function,
[key: string]: any
}