提交 4dad24be 编写于 作者: Z zhaoshuangshi

3.3.2小节习题添加

上级 7646801d
# render函数 # 检测变化
在Vue2中,以下哪个方法是用于检测数据变化的? 在Vue2中,以下哪个方法是用于检测数据变化的?
......
# render函数 # 初始化数据
假设你正在使用Vue的render函数来创建一个组件,以下哪个选项描述的是render函数中正确的组件定义方式 在Vue2中,响应式数据的初始化是在哪个方法中完成的
## 答案 ## 答案
render: function(h) { beforeCreate()
return h(MyComponent, {
class: 'my-component'
}, 'Hello World')
}
## 选项 ## 选项
### A ### A
render: function(h) { created()
return h('div', {
class: 'my-component'
}, 'Hello World')
}
### B ### B
render: function(h) { mounted()
return h('my-component', {
class: 'my-component'
}, 'Hello World')
}
### C ### C
render: function(h) { beforeMount()
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.
先完成此消息的编辑!
想要评论请 注册