UNPKG

vimo-dt

Version:

A Vue2.x UI Project For Mobile & HyBrid

30 lines (29 loc) 622 B
export default { props: { /** * 按钮color:primary、secondary、danger、light、dark * */ color: String, /** * mode 按钮风格 ios/window/android/we/alipay * */ mode: { type: String, default () { return (this.$config && this.$config.get('mode', 'ios')) || 'ios' } } }, computed: { // 环境样式 modeClass () { return `${this.componentName} ${this.componentName}-${this.mode}` }, // 颜色 colorClass () { return this.color ? `${this.componentName}-${this.mode}-${this.color}` : '' } } }