wangbd-myui
Version:
MY前端基础框架核心组件库
22 lines (21 loc) • 463 B
JavaScript
export default {
inheritAttrs: false,
props: {
type: {
type: String,
default: 'default',
validator(val) {
return ['default', 'primary', 'normal', 'secondary', 'success',
'placeholder', 'warning', 'danger'].includes(val)
}
}
},
computed: {
textTypeClass() {
return {
[`is-${this.type}`]: !!this.type,
'is-pointer': !!this.$listeners.click
}
}
}
}