YangLGggggggggg

Results 26 comments of YangLGggggggggg

same problem。 But I found something even weirder If you dont pass in a variable to `defineProps`, This property will not be undefined after `torefs`。 The code like ``` const...

> > This type will not be infer to undefined > > because you set `required: true` but . if I code like this。the type will be undefined ``` const...

@dsc6636926 @rayimagewcs 老哥解决了吗? 我现在配置也是一样,能读能写,但是订阅配置就会403

@rayimagewcs 老哥可以了,感谢!

I have the same problem,in latest version!!!! Did you solve it?

same problem in webstrom . . . shows all the process logs in the termimal I hope there is a solution to circumvent this problem

这和ts 无关,但是请问下,为什么 ``` const NumericObject = { [1]: "冴羽一号", [2]: "冴羽二号", [3]: "冴羽三号" }; ``` 这里 [1] 可以做对象的key,而像[1,2]却不能直接作为对象的key呢? 例如 ``` const NumericObject = { [1,2]: "冴羽一号", }; ```

> ```js > const o = { > [这里是变量]: value > } > ``` > > `1,2` 显然不是一个正确的变量... 可是为什么1却又可以了呢 ?

I found that there will be similar problems in the case of multi-file output ``` rollup.config.js output: [ { dir: 'dist/cjs', format: 'cjs' }, { dir: 'dist/es', format: 'es' },...