From c28cb3bbb1afdc74cf065771076c05d3ab03853e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E9=98=85=E5=85=B5?= <10004622+wei-parade@user.noreply.gitee.com> Date: Sat, 24 Jun 2023 19:41:37 +0800 Subject: [PATCH 1/3] six:comit --- app.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app.js diff --git a/app.js b/app.js new file mode 100644 index 0000000..38055b5 --- /dev/null +++ b/app.js @@ -0,0 +1,27 @@ +console.log('script start') + +async function async1() { + await async2() + console.log('1 ') +} +async function async2() { + console.log('2') +} +async1() + +setTimeout(function() { + console.log('setTimeout') +}, 0) + +new Promise(resolve => { + console.log('Promise') + resolve() +}) + .then(function() { + console.log('promise2') + }) + .then(function() { + console.log('promise25') + }) + +console.log('end) \ No newline at end of file -- Gitee From 7e7df5f595d1ccc0f2a00ddf5287e7c8c01f7d82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E9=98=85=E5=85=B5?= <10004622+wei-parade@user.noreply.gitee.com> Date: Sat, 24 Jun 2023 20:12:39 +0800 Subject: [PATCH 2/3] eight:comit --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 38055b5..f1eeb43 100644 --- a/app.js +++ b/app.js @@ -24,4 +24,4 @@ new Promise(resolve => { console.log('promise25') }) -console.log('end) \ No newline at end of file +console.log('start12') \ No newline at end of file -- Gitee From 438b0429a9c9865d9580e8a6d937a7a8bcd8e355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E9=98=85=E5=85=B5?= <10004622+wei-parade@user.noreply.gitee.com> Date: Sat, 24 Jun 2023 20:23:39 +0800 Subject: [PATCH 3/3] jiu:comit --- ...237js\345\256\236\347\216\260v-model.html" | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 "\345\216\237\347\224\237js\345\256\236\347\216\260v-model.html" diff --git "a/\345\216\237\347\224\237js\345\256\236\347\216\260v-model.html" "b/\345\216\237\347\224\237js\345\256\236\347\216\260v-model.html" new file mode 100644 index 0000000..3aa0e38 --- /dev/null +++ "b/\345\216\237\347\224\237js\345\256\236\347\216\260v-model.html" @@ -0,0 +1,59 @@ + +
+ 名字:
+ 年龄: +
+

模拟v-model

+
+
+ + -- Gitee