first commit

This commit is contained in:
2025-08-11 23:49:58 +08:00
commit 0b8fb61130
38 changed files with 20122 additions and 0 deletions

15
new_mush.js Normal file
View File

@@ -0,0 +1,15 @@
function bindDataToElement(data) {
const proxy = new Proxy(data, {
set(target, key, value) {
target[key] = value;
return true;
},
});
console.log("proxy", proxy);
}
window.onload = () => {
const data = { name: "张三", age: 20 };
bindDataToElement(data);
};