Vue equivalent of setTimeout?

前端 未结 13 2306
栀梦
栀梦 2021-01-30 08:20

I\'m making a shopping cart system with Laravel and Vue. When I add an item to the basket, I display a confirmation message by toggling a Vue variable being watched by a v-if:

相关标签:
13条回答
  • 2021-01-30 08:53

    use this.animationStop, not use this.animationStop ( )

    animationRun(){
        this.sliderClass.anim = true;
        setTimeout(this.animationStop, 500);
    },
    
    0 讨论(0)
提交回复
热议问题