文件名称:studyVue03:原始码分析
文件大小:90KB
文件格式:ZIP
更新时间:2024-04-12 09:01:16
系统开源
Vue原始码解析 基本概念知识 [].slice.call(fakeArray) // call的源码实现 Function . prototype . myCall = function ( context ) { context = context || window //第一步获取调用myCall的方法 context . fn = this //第二步剔除myCall第一个参数 var temp = [ ] for ( var i = 1 ; i < arguments . length ; i ++ ) { temp . push ( `arguments[ ${ i } ]` ) } //第三步执行调用myCall函数 eval ( `context.fn( ${ temp } )` )
【文件预览】:
studyVue03-master
----.gitignore(584B)
----01-mvvm-数据代理.html(563B)
----prepare()
--------03-attributes.html(391B)
--------01.1-appendChild.html(709B)
--------02-defineProperty.html(804B)
--------01.2-fragment.html(1KB)
----js()
--------vue.js(283KB)
--------mvvm()
----readme.md(4KB)
----02.1-mvvm-class解析.html(692B)
----02.1-vue-class解析.html(501B)
----02-mvvm-模板解析.html(595B)
----01-vue-数据代理.html(412B)