Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoAlone committed May 5, 2021
1 parent 5ee5677 commit 49b026d
Show file tree
Hide file tree
Showing 12 changed files with 338 additions and 13,988 deletions.
335 changes: 304 additions & 31 deletions .idea/workspace.xml

Large diffs are not rendered by default.

Binary file removed 10 vue-cli/cnode/build/logo.png
Binary file not shown.
Binary file removed 10 vue-cli/cnode/src/assets/logo.png
Binary file not shown.
Binary file removed 10 vue-cli/my-project/build/logo.png
Binary file not shown.
Binary file removed 10 vue-cli/my-project/src/assets/logo.png
Binary file not shown.
Binary file removed 10 vue-cli/vuex-app/build/logo.png
Binary file not shown.
Binary file removed 10 vue-cli/vuex-app/src/assets/logo.png
Binary file not shown.
Binary file removed source-code/build/logo.png
Binary file not shown.
13,949 changes: 14 additions & 13,935 deletions source-code/package-lock.json

Large diffs are not rendered by default.

Binary file removed source-code/src/notes/book(随堂电子书).pdf
Binary file not shown.
20 changes: 20 additions & 0 deletions test.js
Expand Up @@ -14,3 +14,23 @@ console.log(person instanceof Object) // true

console.log(typeof PersonClass) // function
console.log(typeof PersonClass.prototype.sayName) // function

let obj = {
name:'王刚',
age:22,
s:''
}

let data = 12
Object.defineProperty(obj,'s',{
get:function(){
console.log('触发get')
return data
},
set:function(newVal){
console.log('触发set')
data = newVal
console.log('obj:'+obj)
}
})
a = obj.s
22 changes: 0 additions & 22 deletions zz.html

This file was deleted.

0 comments on commit 49b026d

Please sign in to comment.