美文网首页
请教:jsx函数式组件中写slot-scope好像不对,报这个错

请教:jsx函数式组件中写slot-scope好像不对,报这个错

作者: 74d20adebaa1 | 来源:发表于2019-12-01 20:37 被阅读0次

    jsx函数式组件中写slot-scope好像不对,报这个错"TypeError: Invalid attempt to spread non-iterable instance",请问正确的写法是怎样的

    {...{

                          scopedSlots: {

                            icon: props => {

                              console.log(props);

                              return (

                                <van-icon

                                  class-prefix={

                                    'iconfont ' +

                                    (props.checked

                                      ? 'icontubiaosheji_fujiedianxuanzhongfuben'

                                      : 'icontubiaosheji_weixuanzhongfuben')

                                  }

                                  color={props.checked ? '#4888F4' : '#333'}

                                  name="extra"

                                ></van-icon>

                              );

                            }

                          }

                        }}

    相关文章

      网友评论

          本文标题:请教:jsx函数式组件中写slot-scope好像不对,报这个错

          本文链接:https://www.haomeiwen.com/subject/lgnxvttx.html