# render函数 假设你正在使用Vue的render函数来创建一个组件,以下哪个选项描述的是render函数中正确的组件定义方式? ## 答案 render: function(h) { return h(MyComponent, { class: 'my-component' }, 'Hello World') } ## 选项 ### A render: function(h) { return h('div', { class: 'my-component' }, 'Hello World') } ### B render: function(h) { return h('my-component', { class: 'my-component' }, 'Hello World') } ### C render: function(h) { return h('my-component', { class: 'my-component' }, [ h('span', 'Hello'), h('span', 'World') ]) }