Andrew Clint

Results 2 issues of Andrew Clint

### Vue - Official extension or vue-tsc version 2.0.21 ### VSCode version 1.90.1 ### Vue version 3.4.27 ### TypeScript version 4.5.4 ### System Info ```shell System: OS: macOS 14.5 CPU:...

子组件内容: ``` ``` 父组件: ``` {{ item }} ``` mainfest.json: ``` "mp-toutiao": { "scopedSlotsCompiler": "augmented", "usingComponents": true } ``` 预期结果: 父组件显示传入的数组内容1,2,4, 实际结果: 只渲染了传入数组的第一个值:1,1,1 "scopedSlotsCompiler"默认为auto的时候会报错“主包不能引用分包文件”,看了论坛之后改成了"scopedSlotsCompiler": "augmented",这样的话编译确实通过了,但是实际打包头条和小红书小程序后,插槽传值始终都是1个; 环境是:vue2+cli(官网最新版本和alpha版本都试过都有此问题)

mp