亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Vue.js data values ??remain unchanged
P粉274161593
P粉274161593 2024-04-03 09:29:23
0
1
767

I have a data called: cat_pressed

There is also this function that changes the data value:

changeCat(){
            this.cat_pressed === 'brauh'
}

But whenever I call the function the value doesn't change, I don't know why I've tried everything but nothing works.

P粉274161593
P粉274161593

reply all(1)
P粉523335026

It looks like you accidentally used the wrong operator.

Use

=== for checking equality - but you want the value to be assigned to cat_pressed, so you need =.

changeCat(){
    this.cat_pressed = 'brauh'
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template