1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
-
- modelValue: {
- type: [String, Number],
- default: () => defProps.rate.value
- },
-
-
-
- value: {
- type: [String, Number],
- default: () => defProps.rate.value
- },
-
-
- count: {
- type: [String, Number],
- default: () => defProps.rate.count
- },
-
- disabled: {
- type: Boolean,
- default: () => defProps.rate.disabled
- },
-
- readonly: {
- type: Boolean,
- default: () => defProps.rate.readonly
- },
-
- size: {
- type: [String, Number],
- default: () => defProps.rate.size
- },
-
- inactiveColor: {
- type: String,
- default: () => defProps.rate.inactiveColor
- },
-
- activeColor: {
- type: String,
- default: () => defProps.rate.activeColor
- },
-
- gutter: {
- type: [String, Number],
- default: () => defProps.rate.gutter
- },
-
- minCount: {
- type: [String, Number],
- default: () => defProps.rate.minCount
- },
-
- allowHalf: {
- type: Boolean,
- default: () => defProps.rate.allowHalf
- },
-
- activeIcon: {
- type: String,
- default: () => defProps.rate.activeIcon
- },
-
- inactiveIcon: {
- type: String,
- default: () => defProps.rate.inactiveIcon
- },
-
- touchable: {
- type: Boolean,
- default: () => defProps.rate.touchable
- }
- }
- })
|