Coder Social home page Coder Social logo

Comments (6)

tafelnl avatar tafelnl commented on June 22, 2024 1

@fengyuanchen It might be an idea to add a v-model to the countdown as well. This would be a breaking change I guess. So maybe an idea for the next major version. This way we can watch the v-model value instead of listening to the progress event and update that same v-model value to (re)set the countdown. I think this would be more of a 'Vue' way to go about this.

from vue-countdown.

fengyuanchen avatar fengyuanchen commented on June 22, 2024

Just use a v-if directive on the countdown component to start or reset it.

<countdown v-if="enable">...</countdown>

from vue-countdown.

simonschaufi avatar simonschaufi commented on June 22, 2024

Ok. Do you have any idea why I can't set the time prop several times?

from vue-countdown.

tafelnl avatar tafelnl commented on June 22, 2024

@simonschaufi You are 'resetting' to the same value. Vue.js will not detect such a 'change', because of limitations in Javascript (https://vuejs.org/v2/guide/reactivity.html#Change-Detection-Caveats)

You could do the following to work around this:

let time = this.time;
this.time = 0;
this.time = time;
this.$refs.countdown.start();

This works because you are first setting the time to another value and then back to the original value again, and thus triggering the change in Javascript.

from vue-countdown.

simonschaufi avatar simonschaufi commented on June 22, 2024

@tafelnl Thank you very much for your idea. I will try it out.

from vue-countdown.

tafelnl avatar tafelnl commented on June 22, 2024

@simonschaufi I think it might even have to be like this:

        let time = this.time;
        this.time = 0;
        setTimeout(() => {
          this.time = time;
          setTimeout(() => {
            this.$refs.countdown.start();
          }, 0)
        }, 0)

The timeouts will take care that the countdown is actually only started when the time is set to the original value again. And not when it is 0.

from vue-countdown.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.