You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
602 B
27 lines
602 B
5 years ago
|
import baseComponent from '../helpers/baseComponent'
|
||
|
import popupMixin from '../helpers/popupMixin'
|
||
|
import { props } from '../multi-picker-view/props'
|
||
|
|
||
|
baseComponent({
|
||
|
behaviors: [popupMixin()],
|
||
|
properties: {
|
||
|
...props,
|
||
|
prefixCls: {
|
||
|
type: String,
|
||
|
value: 'wux-popup-picker',
|
||
|
},
|
||
|
multiPickerPrefixCls: {
|
||
|
type: String,
|
||
|
value: 'wux-picker',
|
||
|
},
|
||
|
cascade: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
cols: {
|
||
|
type: Number,
|
||
|
value: 3,
|
||
|
},
|
||
|
},
|
||
|
})
|