如何从Vue.js的包装器传递道具到插槽?

时间:2018-11-19 13:25:19

标签: javascript vue.js

在Vue.js中,我有一个组件包装器来实现一些逻辑并将props传递给子代:

<CarContainer>
   <Ferarri color="red">
<CarContainer>

我想在CarContainer中使用渲染功能向法拉利添加一些道具:

render: function(createElement) {
    const { author } = this;
    return createElement(
      'div',
      {
        props: {
          author
        },
       },
       [this.$slots.default],
    );
},

但是最终我的法拉利组件只有色彩道具。如何执行此任务?还是我应该使用mixins?

0 个答案:

没有答案