Vue + TSX 最大的问题就是为了向前兼容所以很啰唆,没法和其他原生 Signal + TSX 的框架竞争。
比如 props,Vue 里要使用构造函数声明。
const Foo = defineComponent({ props: { count: { type: Number, required: true } } })3.3+ 推出的函数式写法,虽然提供了更好的类型推导,但冗余代码更多了。
const Foo = defineComponent((props: { count: number }) => { // ... }, { props: { count: { type: Number, required: true …。