From 9ecc9ccdc6c94d9b03a09df4a5001bc56e348214 Mon Sep 17 00:00:00 2001 From: XY <1719746484@qq.com> Date: Sun, 30 May 2021 21:02:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../note-05-28-21.md" | 119 ++++++++++++++++++ .../note-05-29-21.md" | 63 ++++++++++ 2 files changed, 182 insertions(+) create mode 100644 "\346\254\247\351\230\263\347\276\216\346\235\217/note-05-28-21.md" create mode 100644 "\346\254\247\351\230\263\347\276\216\346\235\217/note-05-29-21.md" diff --git "a/\346\254\247\351\230\263\347\276\216\346\235\217/note-05-28-21.md" "b/\346\254\247\351\230\263\347\276\216\346\235\217/note-05-28-21.md" new file mode 100644 index 0000000..c5b566b --- /dev/null +++ "b/\346\254\247\351\230\263\347\276\216\346\235\217/note-05-28-21.md" @@ -0,0 +1,119 @@ +## 第三节Vue课堂笔记 + +``` + +数据与方法 + +
+ +
+ + + + + +当一个实例,vue实例被创建时,它会将data对象中的所有的属性加入到vue的响应式系统中。 +只有实例被创建时就已经存在在data中的属性才是响应式的。 +后面再添加属性是不会改变的 + +
+ {{thinkToSing}} +
+ {{thinkPad}} +
+ {{ipad}} + +
+ + + + + + + +``` + +``` +
+ {{thinkToSing}} +
+ {{thinkPad}} +
+ {{ipad}} + +
+ + + + + + +``` \ No newline at end of file diff --git "a/\346\254\247\351\230\263\347\276\216\346\235\217/note-05-29-21.md" "b/\346\254\247\351\230\263\347\276\216\346\235\217/note-05-29-21.md" new file mode 100644 index 0000000..a4e9fc1 --- /dev/null +++ "b/\346\254\247\351\230\263\347\276\216\346\235\217/note-05-29-21.md" @@ -0,0 +1,63 @@ +## 第四节Vue课堂笔记 +## 叶家双子生日快乐! + +``` +不能用V-html来复合局部模板。 +站点上动态渲染的任意HTML都很有可能受到攻击,所以只能对可信内容使用HTML插值。 + +``` +Attribute +对于布尔 attribute (它们只要存在就意味着值为 true) + +
+ +
+ + + + + 在控制台输入app.isButtonDisabled=false,按钮就会变得可点击 + +``` + + +``` +
+ 这是你的第{{msg}}次点击 + + + + 这是一个链接 +
+ + + +``` \ No newline at end of file -- Gitee