Vue equivalent of setTimeout?

前端 未结 13 2354
栀梦
栀梦 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:48

    If you want to use the this keyword in your function, you need to write the setTimeout function in ES6

    setTimeout(() => {
       this.filters.max_budget_gt_eq = this.budgetHigherValue;
    }, 1000);
    

提交回复
热议问题