出現問題:Errors compiling template:目前僅支持解構插槽 otherSlotProps,如 v-slot="{ user }"
1.子組件中 test.vue
<view > <slot name="other" :user="user"></slot> <slot></slot> </view>
2.在父組件使用
<test> <template v-slot:other="otherSlotProps"> {{ otherSlotProps.user.lastName }} </template> </test>
此時在編譯到微信小程序中報錯

而運行到其他環境下比如H5是沒問題的
那么在微信小程序中要使用解構插槽方式實現:
<test> <template v-slot:other="{user}"> {{ user.lastName }} </template> </test>
此時運行是沒問題的,參數傳值也沒問題。
