mlinquan/vue-awesome-countdown

finish and autostart false not working

amchconsult opened this issue · 1 comments

Hi, Finish and autostart false not working. Also it is not taking the date so it is only taking the time.

Thank you

My code:

<countdown 
    :startTime="2020-06-25 13:30:00"
    :end-time="2020-06-27 13:30:00" 
    @onfinish="termino()" 
    :autoStart="false"
    >
        <template v-slot:process="{ timeObj }"> 
            <span>{{ `Offer ends: ${timeObj.h}h ${timeObj.m}m ${timeObj.s}s` }}</span> 
        </template>
        <template v-slot:finish> 
            <span>Expired!</span> 
        </template>
</countdown>

I got it working, but ios is not working. It is always finish?
any ideas?
I think is the datetime format
thank you