123456789101112131415161718192021222324252627282930313233343536 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- seconds: {
- type: [String, Number],
- default: () => defProps.code.seconds
- },
-
- startText: {
- type: String,
- default: () => defProps.code.startText
- },
-
- changeText: {
- type: String,
- default: () => defProps.code.changeText
- },
-
- endText: {
- type: String,
- default: () => defProps.code.endText
- },
-
- keepRunning: {
- type: Boolean,
- default: () => defProps.code.keepRunning
- },
-
- uniqueKey: {
- type: String,
- default: () => defProps.code.uniqueKey
- }
- }
- })
|