vue2.x源码解析准备--Runtime Only 和 Runtime+Compiler

1.了解Runtime Only 和 Runtime+Compiler

在我们使用vue-cli的时候,会提示你安装的版本
vue2.x源码解析准备--Runtime Only 和 Runtime+Compiler_第1张图片
可以看到有两种版本:
Runtime Only 版本 和 Runtime+Compiler 版本

1.1 Runtime Only

我们在使用 Runtime Only 版本的 Vue.js 的时候,通常需要借助如 webpack 的 vue-loader 工具把 .vue 文件编译成 JavaScript,因为是在编译阶段做的,所以它只包含运行时的 Vue.js 代码,因此代码体积也会更轻量。
在将 .vue 文件编译成 JavaScript的编译过程中会将组件中的template模板编译为render函数,所以我们得到的是render函数的版本。所以运行的时候是不带编译的,编译是在离线的时候做的。

1.2 Runtime+Compiler

我们如果没有对代码做预编译,但又使用了 Vue 的 template 属性并传入一个字符串,则需要在客户端编译模板,如下所示:

// 需要编译器的版本
new Vue({
  template: '
{{ hi }}
'
}) // 这种情况不需要 new Vue({ render (h) { return h('div', this.hi) } })

因为在 Vue.js 2.0 中,最终渲染都是通过 render 函数,如果写 template 属性,则需要编译成 render 函数,那么这个编译过程会发生运行时,所以需要带有编译器的版本。

很显然,这个编译过程对性能会有一定损耗,所以通常我们更推荐使用 Runtime-Only 的 Vue.js。

你可能感兴趣的:(vue源码)