Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_vue
提交
7646801d
S
skill_tree_vue
项目概览
CSDN 技术社区
/
skill_tree_vue
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_vue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
7646801d
编写于
2月 28, 2023
作者:
Z
zhaoshuangshi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
3.3.1小节习题添加
上级
239c4383
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
130 addition
and
9 deletion
+130
-9
data/3.Vue高阶/3.深入Vue2响应式原理/1.检测变化/exercises.md
data/3.Vue高阶/3.深入Vue2响应式原理/1.检测变化/exercises.md
+30
-0
data/3.Vue高阶/3.深入Vue2响应式原理/2.初始化数据/exercises.md
data/3.Vue高阶/3.深入Vue2响应式原理/2.初始化数据/exercises.md
+50
-0
data/3.Vue高阶/3.深入Vue2响应式原理/3.异步更新队列/exercises.md
data/3.Vue高阶/3.深入Vue2响应式原理/3.异步更新队列/exercises.md
+50
-0
data/3.Vue高阶/3.深入Vue2响应式原理/4.计算属性的强大之处/config.json
data/3.Vue高阶/3.深入Vue2响应式原理/4.计算属性的强大之处/config.json
+0
-9
未找到文件。
data/3.Vue高阶/3.深入Vue2响应式原理/1.检测变化/exercises.md
0 → 100644
浏览文件 @
7646801d
# render函数
在Vue2中,以下哪个方法是用于检测数据变化的?
## 答案
Object.defineProperty()
## 选项
### A
Object.defineGetter()
### B
Object.observe()
### C
object.render()
data/3.Vue高阶/3.深入Vue2响应式原理/2.初始化数据/exercises.md
0 → 100644
浏览文件 @
7646801d
# 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')
])
}
data/3.Vue高阶/3.深入Vue2响应式原理/3.异步更新队列/exercises.md
0 → 100644
浏览文件 @
7646801d
# 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')
])
}
data/3.Vue高阶/3.深入Vue2响应式原理/4.计算属性的强大之处/config.json
已删除
100644 → 0
浏览文件 @
239c4383
{
"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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录