1234567891011121314151617181920212223242526 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- time: {
- type: [String, Number],
- default: () => defProps.countDown.time
- },
-
- format: {
- type: String,
- default: () => defProps.countDown.format
- },
-
- autoStart: {
- type: Boolean,
- default: () => defProps.countDown.autoStart
- },
-
- millisecond: {
- type: Boolean,
- default: () => defProps.countDown.millisecond
- }
- }
- })
|