2020
10-10
10-10
Vue js with语句原理及用法解析
vue源码中编译部分有下面一段代码,里面用到了with:exportfunctiongenerate(ast:ASTElement|void,options:CompilerOptions):CodegenResult{conststate=newCodegenState(options)constcode=ast?genElement(ast,state):'_c("div")'return{render:`with(this){return$[code]}`,staticRenderFns:state.staticRenderFns}}下面详细解释一下with的用法:js中我们常用的一种类型是对象:letobj=...
继续阅读 >