| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const props = {
- align: {
- type: String,
- value: 'center',
- },
- cancelText: {
- type: String,
- value: '取消',
- },
- count: {
- type: Number,
- value: 8,
- },
- description: {
- type: String,
- value: '',
- },
- items: {
- type: Array,
- },
- popupProps: {
- type: Object,
- value: {},
- },
- showCancel: {
- type: Boolean,
- value: true,
- },
- showOverlay: {
- type: Boolean,
- value: true,
- },
- theme: {
- type: String,
- value: 'list',
- },
- visible: {
- type: Boolean,
- value: null,
- },
- defaultVisible: {
- type: Boolean,
- value: false,
- },
- };
- export default props;
|