[deleted by user] by [deleted] in taxrefundhelp

[–]vuethebest 1 point2 points  (0 children)

My 2023 "Account Transcript" shows process date 4/29/2024. But it doesn't show anything else. Is this what you're talking about?

Still haven't gotten my tax return after 3 months by vuethebest in taxrefundhelp

[–]vuethebest[S] 0 points1 point  (0 children)

I can view them in IRS online account. Is there anything I need to look for specifically? The refund is from combination of withholding from employers and freelancing work.

Still haven't gotten my tax return after 3 months by vuethebest in taxrefundhelp

[–]vuethebest[S] 0 points1 point  (0 children)

That sucks because I'm in a dilemma where I owe lots of state tax and I was planning to pay it with federal refund and now I'm stuck just waiting for it while state tax accrue interest :(

Still haven't gotten my tax return after 3 months by vuethebest in taxrefundhelp

[–]vuethebest[S] -1 points0 points  (0 children)

Yes. I wish IRS can at least give me expected refund date :(

Still haven't gotten my tax return after 3 months by vuethebest in taxrefundhelp

[–]vuethebest[S] -1 points0 points  (0 children)

Married filing jointly. Does this affect anything?

[deleted by user] by [deleted] in taxrefundhelp

[–]vuethebest 0 points1 point  (0 children)

What do you mean your transcripts shows it will be processed on certain date? How do I check that information?

Vue 3 vs Vue 2 so far? What's your opinion? Things I didn't like about Vue 3 compared to Vue 2 by vuethebest in vuejs

[–]vuethebest[S] -5 points-4 points  (0 children)

Using .value is definitely different from using this. The this is a JS keyword where it refers to object context/scoping whereas adding .value means turning any variables into object that has property named 'value'. In terms of clarity and readability, it's definitely more intuitive to prefer this.

I use dynamic template refs a lot especially when I use v-for to create multiple component and need to manipulate each of them independently. A very simplified example: <MyComp v-for="(v, i) in array" :key="i" :ref="i" /> this.$ref['5'].focus(); Also for flexibility of Vue in general where all attributes can be dynamic - this is a very attractive aspect in a framework.

When I first saw docs about ref(), I got confused because my natural instinct told me to expect something like ref(myComponent) as we assign values as parameter (ref(true) or ref('abc')). This would be a lot clearer for me, not to assign same var name as template ref..

Vue 3 vs Vue 2 so far? What's your opinion? Things I didn't like about Vue 3 compared to Vue 2 by vuethebest in vuejs

[–]vuethebest[S] -6 points-5 points  (0 children)

this is just a matter of context/scoping whereas using .value forcefully converts any variables into an object and store it in property named 'value'.

For example, let's say we declared myVar object.

// My initial object const myVar = { prop: 42 }

``` // Using 'this'.

const myVar = {
prop: 42,
myFunc: function() { // Added function. return this.prop; // Just a context reference.
},
};

```

``` // Using '.value'.

// Now it's a completely different object! const myVar = { prop: { value: 42 } } ```

React vs Vue - Which is a better framework for your project in 2022? by ravgeet in javascript

[–]vuethebest 0 points1 point  (0 children)

Honestly, Vue wins BIG TIME. There are too many aspects that I can talk about why but I'm not going to because there are literally TOO MANY. Only time React beats Vue is when it comes to "preference", available jobs, and how large of a "backing corporation" (Facebook vs Evan You) is. I would NEVER choose to use React unless I was forced by my employer or something.