正常的情况下render函数是这样用的:
return h('div', {})
今天想用render函数返回自己写的vue component,想当然地给第一个参数传'my-component',结果一只报错,正确做法应该直接把component装在在第一个参数上:
// 错误做法
return h('my-component', {})
// 正确做法
return h(MyComponent, {})
正常的情况下render函数是这样用的:
return h('div', {})
今天想用render函数返回自己写的vue component,想当然地给第一个参数传'my-component',结果一只报错,正确做法应该直接把component装在在第一个参数上:
// 错误做法
return h('my-component', {})
// 正确做法
return h(MyComponent, {})