Vue程序运行过程

如果在开发中,使用template,就需要选择Runtime-Compiler

如果在开发中,使用的是.vue文件夹开发,那么可以选择Runtime-only

runtime-compiler:
template -> ast ->render -> v-dom -> dom
runtime-only:
render -> v-dom -> dom

Vue程序运行过程