| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | export default {    props: {                activeStyle: {            type: [String, Object],            default: () => ({                color: '#2979ff',                fontSize: '14px'            })        },                inactiveStyle: {            type: [String, Object],            default: () => ({                color: '#606266',                fontSize: '14px'            })        },                closeOnClickMask: {            type: Boolean,            default: true        },                closeOnClickSelf: {            type: Boolean,            default: true        },                duration: {            type: [Number, String],            default: 300        },                height: {            type: [Number, String],            default: 40        },                borderBottom: {            type: Boolean,            default: false        },                titleSize: {            type: [Number, String],            default: 14        },                borderRadius: {            type: [Number, String],            default: 0        },                menuIcon: {            type: String,            default: 'arrow-down'        },                menuIconSize: {            type: [Number, String],            default: 14        }    }}
 |