运行时 + 编译器

1
2
3
4
5
6
7
8
9
10
11
// 需要编译器
new Vue({
template: '<div>{{ hi }}</div>'
})

// 不需要编译器
new Vue({
render (h) {
return h('div', this.hi)
}
})

运行时版本相比完整版体积要小大约 30%,如果任然希望使用完整版,需要在打包工具中配置别名