Comment by epolanski
3 days ago
> I guess this is targeting the vuejs crowd
Vue is written in TS and has first-class support for it, even at the template layer.
3 days ago
> I guess this is targeting the vuejs crowd
Vue is written in TS and has first-class support for it, even at the template layer.
Vue with SFCs is not actually typescript because typescript can not parse the SFC syntax, you need a forked typescript called `vue-tsc` for that.
Shows what a hack vue really is.
Only since Vue 3 though, and the types are still not as good as React.
Vue 3 has 6 years at this point.
Also, could you expand on the fact that types are "still not as good" as React?
Can you make an example?
Sadly not because it's been about 6 years since I looked at it! (We ended up switching to React.)
IIRC it's pretty close, but you'll still end up writing things like `{ type: String, required: false }` where in React you'd just write `string | undefined`.
I'm sure I would find many more issues if I was using it in anger, because it's building on a foundation that didn't have Typescript in mind. E.g. see this thread:
https://www.reddit.com/r/vuejs/comments/l456fl/is_vue_3_real...
4 replies →