摘要:
生命周期 beforecreated:el 和 data 并未初始化 created:完成了 data 数据的初始化,el没有 beforeMount:完成了 el 和 data 初始化(模板插入) mounted :完成挂载(渲染出真实dom) data,props,computed,method 阅读全文
摘要:
并发模型(Concurrency model) 、运行时(runtime) 栈(stack) 函数调用形成了一个栈帧(stack of frames)。 function foo(b) { var a = 10; return a + b + 11; } function bar(x) { var 阅读全文