diff --git "a/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/1.\346\243\200\346\265\213\345\217\230\345\214\226/exercises.md" "b/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/1.\346\243\200\346\265\213\345\217\230\345\214\226/exercises.md" new file mode 100644 index 0000000000000000000000000000000000000000..57c30ce62f3f15693824e2fe146ed1f34c8f3e2f --- /dev/null +++ "b/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/1.\346\243\200\346\265\213\345\217\230\345\214\226/exercises.md" @@ -0,0 +1,30 @@ +# render函数 + +在Vue2中,以下哪个方法是用于检测数据变化的? + + +## 答案 + +Object.defineProperty() + + +## 选项 + +### A + +Object.defineGetter() + + +### B + +Object.observe() + + + +### C + + +object.render() + + + diff --git "a/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/2.\345\210\235\345\247\213\345\214\226\346\225\260\346\215\256/exercises.md" "b/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/2.\345\210\235\345\247\213\345\214\226\346\225\260\346\215\256/exercises.md" new file mode 100644 index 0000000000000000000000000000000000000000..da37afb9dd763f939839edf2d46e4fee44d0c6ec --- /dev/null +++ "b/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/2.\345\210\235\345\247\213\345\214\226\346\225\260\346\215\256/exercises.md" @@ -0,0 +1,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') + ]) +} + + + diff --git "a/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/3.\345\274\202\346\255\245\346\233\264\346\226\260\351\230\237\345\210\227/exercises.md" "b/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/3.\345\274\202\346\255\245\346\233\264\346\226\260\351\230\237\345\210\227/exercises.md" new file mode 100644 index 0000000000000000000000000000000000000000..da37afb9dd763f939839edf2d46e4fee44d0c6ec --- /dev/null +++ "b/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/3.\345\274\202\346\255\245\346\233\264\346\226\260\351\230\237\345\210\227/exercises.md" @@ -0,0 +1,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') + ]) +} + + + diff --git "a/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/4.\350\256\241\347\256\227\345\261\236\346\200\247\347\232\204\345\274\272\345\244\247\344\271\213\345\244\204/config.json" "b/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/4.\350\256\241\347\256\227\345\261\236\346\200\247\347\232\204\345\274\272\345\244\247\344\271\213\345\244\204/config.json" deleted file mode 100644 index 66fbce5b85980f574d7135de97f536273101b60c..0000000000000000000000000000000000000000 --- "a/data/3.Vue\351\253\230\351\230\266/3.\346\267\261\345\205\245Vue2\345\223\215\345\272\224\345\274\217\345\216\237\347\220\206/4.\350\256\241\347\256\227\345\261\236\346\200\247\347\232\204\345\274\272\345\244\247\344\271\213\345\244\204/config.json" +++ /dev/null @@ -1,8 +0,0 @@ -{ - "node_id": "vue-db0c112775ee4491b3177bedd2a1c19c", - "keywords": [], - "children": [], - "export": [], - "keywords_must": [], - "keywords_forbid": [] -} \ No newline at end of file