From ccc00f03fd2a171ff167525a7e10c5b030155eb5 Mon Sep 17 00:00:00 2001 From: Code12121 <3056762376@qq.com> Date: Thu, 27 Oct 2022 11:26:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=B2=E6=9B=B4=E6=96=B0=E8=87=B3=E5=AD=90?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=90=91=E7=88=B6=E7=BB=84=E4=BB=B6=E4=BC=A0?= =?UTF-8?q?=E9=80=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../props属性的使用.html | 9 ++- ...习Props属性的使用(对象).html | 61 +++++++++++++++++++ .../子组件向父组件传递数据.html | 53 ++++++++++++++++ 3 files changed, 120 insertions(+), 3 deletions(-) create mode 100644 10-组件化开发/07-父子组件的通信/07-1父组件向子组件的通信(props)/复习Props属性的使用(对象).html create mode 100644 10-组件化开发/07-父子组件的通信/07-2子组件向父组件的通信(emit)/子组件向父组件传递数据.html 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 @@
- + +
@@ -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 + + +
+ +
+ + + + + \ 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