diff --git a/10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/props属性的使用.html b/10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/props属性的使用.html
index 48ead21..77b9220 100644
--- a/10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/props属性的使用.html
+++ b/10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/props属性的使用.html
@@ -8,13 +8,16 @@
-
{{new_lists}}
+ {{new_Lists}}
@@ -29,7 +32,7 @@
template:"#tpl",
// 1、props:['new_lists']
props:{
- new_lists:{
+ new_Lists:{
type:Array,
default(){
return ['None']
diff --git a/10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/复习Props属性的使用(对象).html b/10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/复习Props属性的使用(对象).html
new file mode 100644
index 0000000..1589fab
--- /dev/null
+++ b/10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/复习Props属性的使用(对象).html
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
{{item.name}}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/10-组件化开发/07-父子组件的通信/07-2子组件向父组件的通信(emit)/子组件向父组件传递数据.html b/10-组件化开发/07-父子组件的通信/07-2子组件向父组件的通信(emit)/子组件向父组件传递数据.html
new file mode 100644
index 0000000..5bf4ec2
--- /dev/null
+++ b/10-组件化开发/07-父子组件的通信/07-2子组件向父组件的通信(emit)/子组件向父组件传递数据.html
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file