12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- activeColor: {
- type: String,
- default: '#2979ff'
- },
-
- inactiveColor: {
- type: String,
- default: '#606266'
- },
-
- 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
- }
- }
- })
|