exercises.md 635 字节
Newer Older
Z
zhaoshuangshi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
# 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')
  ])
}