提交 9b3c2bc9 编写于 作者: Z zhaoshuangshi

3.3章节下习题添加

上级 4dad24be
# 异步更新队列
在Vue2中,响应式数据更新时的异步更新队列是通过哪个函数实现的?
## 答案
queueWatcher()
## 选项
### A
nextTick()
### B
flushCallbacks()
### C
callHook()
# 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')
])
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册