在Vue.js中,我有一个组件包装器来实现一些逻辑并将props传递给子代:
<CarContainer>
<Ferarri color="red">
<CarContainer>
我想在CarContainer中使用渲染功能向法拉利添加一些道具:
render: function(createElement) {
const { author } = this;
return createElement(
'div',
{
props: {
author
},
},
[this.$slots.default],
);
},
但是最终我的法拉利组件只有色彩道具。如何执行此任务?还是我应该使用mixins?