From 33e52c29f62382e279116b0ee71e9089ea9f20e9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=AE=B8=E6=A2=A6=E5=A9=B7?= <2559593548@qq.com>
Date: Mon, 31 May 2021 15:09:23 +0800
Subject: [PATCH] =?UTF-8?q?=E7=AC=94=E8=AE=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...4\345\233\233\350\212\202\350\257\276).md" | 96 ++++++++++++++++++
.../imgs/2021-5-29-001.PNG" | Bin 0 -> 13488 bytes
.../imgs/2021-5-29-002.PNG" | Bin 0 -> 7795 bytes
3 files changed, 96 insertions(+)
create mode 100644 "\350\256\270\346\242\246\345\251\267/2021-5-29(vue\347\254\254\345\233\233\350\212\202\350\257\276).md"
create mode 100644 "\350\256\270\346\242\246\345\251\267/imgs/2021-5-29-001.PNG"
create mode 100644 "\350\256\270\346\242\246\345\251\267/imgs/2021-5-29-002.PNG"
diff --git "a/\350\256\270\346\242\246\345\251\267/2021-5-29(vue\347\254\254\345\233\233\350\212\202\350\257\276).md" "b/\350\256\270\346\242\246\345\251\267/2021-5-29(vue\347\254\254\345\233\233\350\212\202\350\257\276).md"
new file mode 100644
index 0000000..e4008c9
--- /dev/null
+++ "b/\350\256\270\346\242\246\345\251\267/2021-5-29(vue\347\254\254\345\233\233\350\212\202\350\257\276).md"
@@ -0,0 +1,96 @@
+今日份课堂笔记
+
+2021-5-29 星期六
+
+一.模板语法
+1.文本
+```
+无论何时,绑定的数据对象上 msg property 发生了改变,插值处的内容都会更新。
+ Message: {{ a }}//app.a
+
+通过使用 v-once 指令,你也能执行一次性地插值,当数据改变时,插值处的内容不会更新。
+ 这个将不会改变: {{ msg }}//app.msg
+```
+
+
+2.原始HTML
+```
+双大括号会将数据解释为普通文本
+
{{ a }}
+
+ 输出真正的 HTML
+
+```
+
+
+3.Attribute
+```
+对于布尔 attribute (它们只要存在就意味着值为 true),v-bind 工作起来略有不同。
+如果 isButtonDisabled 的值是 null、undefined 或 false,则 disabled attribute 甚至不会被包含在渲染出来的