提交 7646801d 编写于 作者: Z zhaoshuangshi

3.3.1小节习题添加

上级 239c4383
# render函数
在Vue2中,以下哪个方法是用于检测数据变化的?
## 答案
Object.defineProperty()
## 选项
### A
Object.defineGetter()
### B
Object.observe()
### C
object.render()
# 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')
])
}
# 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')
])
}
{
"node_id": "vue-db0c112775ee4491b3177bedd2a1c19c",
"keywords": [],
"children": [],
"export": [],
"keywords_must": [],
"keywords_forbid": []
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册